How to add a photo gallery in html/css

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

Intro to HTML. HTML HTML = HyperText Markup Language Used to define the content of a webpage HTML is made up of tags and attributes Content.
Introduction to HTML & CSS
Cascading Style Sheets
MIS 425 Lecture 2 – HTML Navigation, Colors, tables and Styles Instructor: Martin Neuhard
Project 8 Creating Style Sheets.
Using Advanced Cascading Style Sheets
Cascading Style Sheets Understanding styles. The term cascading describe the capability of a local style to override a general style. CSS applies style.
Server Web Server Pages Client Browser  Office Hours on Thursday › Diane’s are CANCELLED › Belinda will hold 11:00-12:00  Belinda will be teaching.
How can basic HTML sites be improved?. The Difference Between Hyper Text Markup Language Is a markup language for describing web pages Is used to create.
 Missing (or duplicate) semicolons can make the browser completely ignore the style rule.  You may add extra spaces between the properties/values to.
Understanding HTML Style Sheets. What is a style?  A style is a rule that defines the appearance and position of text and graphics. It may define the.
CHAPTER 8: Enhancing a Website Session 1. Objectives Embed a YouTube video in your website Insert a slideshow in your website Use Google fonts in your.
Background Images in HTML/CSS STEPHANIE BECKSTROM.
Tutorial 6 Creating Tables and CSS Layouts. Objectives Session 6.1 – Create a data table to display and organize data – Modify table properties and layout.
Creating A Simple Web Page. Step 1- Open Dreamweaver & Create A New Page (File New) and blank.
Dreamweaver MX. 2 Creating External Style Sheets-1 (p. 400) n A style is a group of formatting attributes identified by a single name. n An ________ style.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
Eat Your Words! Creating webpage Layout. CONTENT The Layout of a Webpage HEADER FOOTER Each of these sections represents a ‘div’ (or divider). By linking.
Server-side Scripting Powering the webs favourite services.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
CHAPTER 3 USING HYPERLINKS TO CONNECT CONTENT. LEARNING OBJECTIVES How to use the and anchor tag pair to create a text-based hyperlink. How to use the.
DREAMWEAVER Adding photos and other tips!. Making photo gallery  Gather ALL the photos you need into your images folder. (remember to copy the URL so.
Title, meta, link, script.  The title looks like:  The tag defines the title of the document in the browser toolbar.  It also: ◦ Provides a title for.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
Chapter 12 FRAMES. HOW FRAMES WORK When you view a framed page in a browser, you are actually looking at several HTML documents at once. The key to making.
Enhancing Your Web Site—Adding Links Web Page **YOU MUST HAVE COMPLETED THE 1ST 3 WEB PAGES BEFORE YOU CAN DO THIS ONE. **YOU SHOULD HAVE COMPLETED THE.
© 2011 Delmar, Cengage Learning Chapter 8 Using Styles and Design Style Sheets for Design.
Content Management System Overview. URL: Home Page.
Definition CSS “Short for Cascading Style Sheets, a new feature being added to HTML that gives both Web site developers and users more control over how.
Creating a rotating image banner Activity 7 Procedure Creating AP Elements 1.Start Dreamweaver and select the ‘Hong Kong Scenery’ web site. 2. Create a.
And adding hyperlinks. MyWebpage Everything that we want in our website, including other folders, documents, xhtml files, image files, css files should.
How the Web Works Building a Website – Lesson 1. How People Access the Web Browsers People access websites using software called a web browser. To view.
Things we’ve covered so far  Basic HTML  Some advanced tags i.e.  Styling using CSS  Background-color  Text  Changing the font on your site  Inserting.
CSCI 6962: Server-side Design and Programming Master Pages.
Shahglasscollection. Goal: 1.showcase Hemanshu Shah's collection of studio glass art 2.Spark interest in glass art and guide user’s understanding of it.
Web Design Part I. Click Menu Site to create a new site root.
LEARN THE QUICK AND EASY WAY! VISUAL QUICKSTART GUIDE HTML and CSS 8th Edition Chapter 8: Working with Style Sheets.
Web Design Vocab 7 Absolute, Cache, Codec, CSS, Gamma.
CSCI 6962: Server-side Design and Programming Facelets and User Interface Design.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
INTRODUCTION TO HTML5 New HTML5 User Interface and Attributes.
HTML and CSS HTML is used for the content of web pages CSS is used for the style of the web pages You are going to learn how they can be combined to create.
Document Object Model Nasrullah. DOM When a page is loaded,browser creates a Document Object Model of the Page.
ET-710 WEB-DESIGN By Bart Chuchro Queensborough Community College.
Your HTML website creating your first html file. Creating an HTML FIle Open note pad from accessories, programs. Write code. Save and view. In 3 Steps.
Practice for Chapter 3: Assume that you are a freelance web designer and need to create a website to promote your freelance company.
Creating Web Pages with Links, Images, and Embedded Style Sheets
HTML5 and CSS3 Illustrated Unit C: Getting Started with CSS.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
Making the website. Get your folders sorted first Create a new folder in “N” called “My hockey website” Create folders inside called “Documents”, “images”
Unit 15 – Web Authoring Web Authoring Project.
Building CSS in Visual Studio Slide 2 Introduction Using the different HTML (and other) Visual Studio Editors CSS tools.
MIT 511- Web Design & Usability
Web Basics: HTML/CSS/JavaScript What are they?
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Art 128 Interface Programming 1 In-class Presentation Week 1B
Lecture 3 Sarsenova Zhibek.
The Internet and HTML Code
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
HTML Images CS 1150 Spring 2017.
Cascading Style Sheets - Building a stylesheet
The Web Wizard’s Guide To DHTML and CSS
Javascript Game Assessment
HTML Images CS 1150 Fall 2016.
Unit 4 Test CSS Test.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Cascading Style Sheets - Building a stylesheet
One Set of Styles Connected to As Many Pages as You Want!!!
Presentation transcript:

How to add a photo gallery in html/css By: Kirsten Van nortwick

Step one Start by creating your usual HTML document. In this case I named this page “How to create an image gallery”

Step Two Next, you will create a css document to input the div gallery information. You will need to play around with the pixel sizes for your particular project.

Step 3 Go back into you HTML document and add the link to the css style sheet. Make sure to link to the correct css document.

Step 4 The next step is to add the div class to the HTML document. This div class needs to be added before each image in the gallery.

Step 5 Next add the image with the target tag before the image. Make sure that the image names match up. The target tag allows the user to click on the image and have the image appear alone in a different browser.

Step 6 Add all the images to the html document and save both the HTML and CSS documents. Make sure the images are saved in the same location as the CSS and HTML documents.

Step 7 The final image gallery should look something like this.