Creating a Web Site for Amateur Photographers

Slides:



Advertisements
Similar presentations
Computers: Tools for an Information Age Writing Your Own Web Page: Using HTML and Web Authoring Tools.
Advertisements

Tutorial 1: Developing a Basic Web site
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
Chapter 2 HTML Basics Key Concepts
Creating and Editing a Web Page Using Inline Styles
Tutorial 1: Developing a Basic Web site
Developing a Web Site: Links Using a link is a quicker way to access information at the bottom of a Web page than scrolling down A user can select a link.
Web Page Development Identify elements of a Web Page Start Notepad
Creating and Editing a Web Page
HTML Introduction HTML
Glencoe Digital Communication Tools Create a Web Page with HTML Chapter Contents Lesson 4.1Lesson 4.1 Get Started with HTML (85) Lesson 4.2Lesson 4.2 Format.
HTML. Goals How to use the Komodo editor HTML coding and testing – List and Images – Tables and Links – At least 2 pages and navigation –
Tutorial 1: Getting Started with HTML5
Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use.
Tutorial 2 Developing a Web Site
HTML, Third Edition--Illustrated1 HTML – Illustrated Introductory, Third Edition Unit H Controlling Page Layout with Frames and Tables.
Links in HTML. Hyperlinks or links Millions of linked web pages make up the World Wide Web Used to connect a web page to another web page on the same.
Basic HTML Hyper text markup Language. Re-cap  … - The tag tells the browser that this is an HTML document The html element is the outermost element.
Web Technologies Website Development Trade & Industrial Education
HTML HyperText Markup Language Constantly evolving - extra facilities being added regularly Java applets and JavaScript used to increase functionality.
HTML (HyperText Markup Language)
Hyperlinks. Linking pages…Hyperlinks 2 Lecture 8  Hyperlink “A clickable HTML element that will direct the web browser to display a different Web page.
Images (1) Three most popular formats – Graphics Interchange Format (GIF) – Joint Photographic Experts Group (JPEG) – Portable Network Graphics (PNG) –
 2002 Prentice Hall, Inc. All rights reserved.2 Chapter 2 — Introduction to HyperText Markup Language 4: Part I Outline 2.1Introduction 2.2Markup Languages.
F-1 Management Information Systems for the Information Age Copyright 2004 The McGraw-Hill Companies, Inc. All rights reserved Extended Learning Module.
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.
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
HTML, Third Edition--Illustrated Brief 1 HTML, Third Edition Illustrated Brief Unit D Adding Graphics and Multimedia.
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
Creating Web Pages with Links, Images, and Formatted Text
HTML, CSS, and XML Tutorial 2 Developing a Web Site.
HTML Concepts and Techniques Fourth Edition Project 6 Using Frames in a Web Site.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
1.  Use the anchor element to link from page to page  Configure absolute, relative, and hyperlinks  Configure relative hyperlinks to web pages.
Tutorial 2 Developing a Basic Web Site. XP Objectives Learn how to storyboard various Web site structures Create links among documents in a Web site Understand.
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
INTRODUCTION TO HTML5 Semantic Layout in HTML5.  The new semantic layout in HTML5 refers to a new class of elements that is designed to help you understand.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
Developing a Basic Web Site
4 Chapter Four Introduction to HTML. 4 Chapter Objectives Learn basic HTML commands Discover how to display graphic image objects in Web pages Create.
Tutorial 2 Developing a Web Site. XP Objectives Learn how to storyboard various Web site structures Create links among documents in a Web site Understand.
Using Frames in a Web Site Project 6. Project Objectives Project 6: Using Frames in a Web Site 2 Define terms related to frames Describe the steps used.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HTML, Third Edition--Illustrated Brief 1 HTML, Third Edition Illustrated Brief Unit C Formatting Page Elements with HTML.
HTML Concepts and Techniques Fifth Edition Chapter 3 Creating Web Pages with Links, Images, and Formatted Text.
HTML Links HTML uses a hyperlink to another document on the Web.
1 Creating the Home Page. 2 Creating a Table Table attributes  Two rows and two columns  No border  Left-aligned Change the vertical alignment of the.
Creating and Editing a Web Page
Web Site Development - Process of planning and creating a website.
Writing Your Own Web Page: Using HTML and FrontPage Chapter 10.
For the World Wide Web.  Gary Hayward is an amateur photographer and digital camera enthusiast. He has decided to create a website named CAMshots, where.
Creating and Editing a Web Page Using Inline Styles
XP 1 Charles Edeki AIU Live Chat for Unit 2 ITC0381.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
1 PROJECT 3 WEB/HTML PROJECT USING NOTEPAD Management Information Systems, 9 th edition, By Raymond McLeod, Jr. and George P. Schell © 2004, Prentice Hall,
Source of website: “Text/css rel=“styles heet” This is an external style sheet link. This means that the.
HTML Comprehensive Concepts and Techniques Second Edition Creating Frames on a Web Page.
Creating Frames on a Web Page
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Creating Page Layouts with CSS
Creating Tables in a Web Site Using an External Style Sheet
Objectives Overview Discuss tools for creating a website, such as text editors, code editors, and content management systems, and when to use each Explain.
Using Frames in a Web Site
Introduction to HTML- Basics
HTML Structure.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
The Most Basic HTML Page
Lesson 2: HTML5 Coding.
Presentation transcript:

Creating a Web Site for Amateur Photographers Developing a Web Site Creating a Web Site for Amateur Photographers

Case: CAMshots Gerry Hayward is an amateur photographer and digital camera enthusiast. He’s creating a Web site named CAMshots. He has asked for your help in designing his site and creating links between the pages.

View Gerry’s Web pages Start your text editor, and then open the hometxt.htm, tipstxt.htm, and glosstxt.htm files, located in the tutorial.02\tutorial folder included with your Data Files. Within each file, go to the comment section at the top of the file and add your name and the date in the space provided. Save the files as home.htm, tips.htm, and gloss.htm, respectively, in the tutorial.02\tutorial folder. Take some time to review the HTML code within each document so that you understand the structure and content of the files. Start your Web browser and open the home.htm, tips.htm, and gloss.htm files. The figure below shows the current layout and appearance of Gerry’s three Web pages.

View Gerry’s Web pages

Create the navigation list Return to the home.htm file in your text editor At the top of the file directly below the header element, insert the following code as shown below: <nav> <ul> <li>Home</li> <li>Tips</li> <li>Glossary</li> </ul> </nav> Go to the gloss.htm, tips.htm in your text editor and add a navigation list to that file. Refresh pages on your web browser

Create a hypertext link to a document Return to the home.htm file in your text editor and go to the navigation list at the top of the page. Mark the text Home as a hypertext link using a set of <a> tags as follows: <a href=”home.htm”>Home</a> Mark the text Tips as a hypertext link using the following code: <a href=”tips.htm”>Tips</a> Mark the text Glossary as a hypertext link as follows: <a href=”gloss.htm”>Glossary</a> Go to the tips.htm, gloss.htm in your text editor and then change the text of the navigation list to hypertext links

Linking to Locations within a Document Create the navigation list Return to the gloss.htm file in your text editor Scroll down to the section element. Directly below the h1 Glossary heading, insert the following navigation list <nav> [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [K] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] [Y] [Z] </nav>

Linking to Locations within a Document Linking to Locations within a Document Marking Locations with the id Attribute Scroll down the file and locate the h2 heading for the letter A. Within the opening <h2> tag, insert the following attribute: id=”A” Locate the h2 heading for the letter B and insert the following attribute in the opening <h2> tag: id=”B” Continue going down the file, adding id attributes to the opening <h2> heading tags for C, D, E, and F corresponding to the letters of those headings.

Linking to Locations within a Document Mark the top of the page Scroll up the gloss.htm file in your text editor and locate the header element directly below the opening <body> tag. Insert the following attribute within the opening <header> tag id=”top”

Linking to Locations within a Document Linking to Locations within a Document Link to an id, change the list of letters to text links Locate the letter A in the list of letters at the top of the gloss.htm file. After the [ character, insert the following opening tag: <a href=”#A”> Between the letter A and the ] character, insert the closing </a> tag. Mark the letters B through F in the list as hypertext links pointing to the appropriate h2 headings in the document. Scroll to the bottom of the file and locate the text Return to Top. Mark the text as a hyperlink, pointing to the element with an id value of top.

Creating Links to ids in Other Documents Mark the glossary entries Return to the gloss.htm file in your text editor Scroll through the file and locate the Aperture definition term Within the opening <dt> tag, insert the following attribute: id=”aperture” Scroll down the file and locate the Exposure definition term, within the opening <dt> tag, insert the following attribute: id=”exposure” Go to the F section of the glossary and mark the terms with the following ids F-stop with the id f-stop Flash Mode with the id flash_mode Focal Length with the id focal_length

Creating Links to ids in Other Documents Creating Links to ids in Other Documents Create links to the glossary entries Open the home.htm file in your text editor. Scroll down the file and locate the F-stop term in the unordered list. Mark F-stop as a hypertext link using the following code: <a href=”gloss.htm#f-stop”>F-stop</a> Mark Exposure as a hypertext link using the following code: <a href=”gloss.htm#exposure”>Exposure</a> Mark the remaining three entries in the unordered list as hypertext pointing to their corresponding entries on the Glossary page.

Working with Linked Images and Image Maps Working with Linked Images and Image Maps Link the Photo of the Month image Return to the home.htm file in your text editor. Scroll down to the img element for the Photo of the Month and then enclose the inline image within a set of <a> tags as follows: <a href=”rainbow_lg.png”> <img src=”rainbow.png” alt=”Photo” /> </a> Refresh home page on your web browser

Working with Linked Images and Image Maps Create an image map Return to the home.htm file in your text editor Directly below the <img> tag for the CAMshots header image, insert the following map element: <map name=”logomap”></map> Within the map element, insert a circular hotspot that points to the home.htm file using the following area element: <area shape=”circle” coords=”82, 82, 80” href=”home.htm” alt=”Home Page” /> Directly below the <area> tag for the circular hotspot, insert the following two rectangular hotspots pointing to the tips.htm and gloss.htm files: <area shape=”rect” coords=”235, 120, 310, 150” href=”tips.htm” alt=”Tips” /> <area shape=”rect” coords=”340, 120, 510, 150” href=”gloss.htm” alt=”Glossary” />

Working with Linked Images and Image Maps Apply the logomap image map Add the following attribute to the <img> tag for the CAMshots logo: usemap=”#logomap” Go to page tips.htm, gloss.htm, and replace the code in the header by the code in page home.htm

Create links to sites on the Web Return to the tips.htm file in your text editor. Scroll to the bottom of the file and locate the definition list containing the list of Web sites. Mark the entry for Apogee Photo as a hypertext link using the following code: <a href=”http://www.apogeephoto.com”>Apogee Photo</a> Mark the remaining three entries in the list as hypertext links pointing to each company’s Web site.

Link to an e-mail address on Gerry’s home page Return to the home.htm file in your text editor. Go to the first paragraph and locate the text contact me. Mark contact me as a hypertext link using the following code <a href=”mailto:ghayward@camshots.com?subject=CAMshots%20Message”> contact me </a>

Specify a link target Return to the tips.htm file in your text editor. Scroll to the bottom of the file and locate the four links to the external Web sites. Within each of the opening <a> tags, insert the following attribute: target=”new”

Working with Metadata To be noticed on the Web, a site needs to include information about itself for search engines to read and add to their search indices. Information about a site is called metadata. Return to the home.htm file in your text editor. Directly below the meta element that defines the document’s character set, insert the following meta elements: <meta name=”author” content=”your name” /> <meta name=”description” content=”A site for sharing information on digital photography and cameras” /> <meta name=”keywords” content=”photography, cameras, digital imaging” />