WIF2003 Tutorial 01
WIF2003 Tutorial 01
Tutorial 01: Create a website for JavaJam Coffee House using HTML
A site map of the JavaJam Coffee House is shown in Figure 1. The site map describes the
architecture of the website, which consists of a “Home” page with three main content pages:
“Menu”, “Music”, and “Jobs”.
Home Page
Launch a text editor, and create a web page with the following specifications:
1. Name the page as “index.html” and save it in the “javajam” folder.
2. HTML Head - Web Page Title
a. Type a page title for the new page using <title> and </title> tags. Use a
descriptive page title. The company name is a good choice for a business
website.
3. HTML Body - Wireframe Header
a. Configure the main content within a <header> element.
b. Use <h1> for the JavaJam Coffeee House logo.
4. HTML Body - Wireframe Navigation
WIF2003 Tutorial
a. place the navigation links (Home Menu Music Jobs) within a <nav> element.
Using code anchor tags to create the hyperlinks and add extra blank spaces
between the hyperlinks with the special character.
• “Home” links to index.html
• “Menu” links to menu.html
• “Music” links to music.html
• Jobs” links to jobs.html
Open the index.html page for the JavaJam website in a text editor. Select File > Save As,
and save the file with the new name of “menu.html” in the javajam folder. Now you are ready
to edit the page.
important and display in bold font weight with the <strong> tag. Use the <dd>
tag to contain the menu item description. The menu item names and
descriptions are as follows:
Just Java
Regular house blend, decaffeinated coffee, or flavor of the day.
Endless Cup $2.00
Cafe au Lait
House blended coffee infused into a smooth, steamed milk.
Single $2.00 Double $3.00
Iced Cappuccino
Sweetened espresso blended with icy-cold milk and served in a chilled glass.
Single $4.75 Double $5.75
3. Test the hyperlink from the menu.html page to index.html. Test the hyperlink from the
index.html page to menu.html. If you links do not work, review your work, paying close
attention to these details:
• Verify that you saved the pages with the correct names in the correct folder.
• Verify your spelling of the page names in the anchor tags.
Test again after you make changes.
WIF2003 Tutorial
3. Test the hyperlink from the music.html page to index.html. Test the hyperlink from the
index.html page to music.html. If you links do not work, review your work, paying close
attention to these details:
• Verify that you saved the pages with the correct names in the correct folder.
• Verify your spelling of the page names in the anchor tags.
Test again after you make changes.
WIF2003 Tutorial
3. Test the hyperlink from the jobs.html page to index.html. Test the hyperlink from the
index.html page to jobs.html. If you links do not work, review your work, paying close
attention to these details:
• Verify that you saved the pages with the correct names in the correct folder.
• Verify your spelling of the page names in the anchor tags.
Test again after you make changes.