Project 10 - Checksheet
Answers for Self-Check Questions for Project 10.
Review questions:
- <p>
- </p>
- <tag attribute="value">
- <p align="right">
- </p>
- <h3 align="center">
- </h3>
Questions about Linking
- To create hyperlinks.
- href
- Use the filename for a relative link to a page stored at the same location within your own website;
use a complete URL to a page on the Internet that is not part of your website
- </a>
- Place the start tag immediately in front of the text that you want to appear as a hyperlink on the page.
- Place the end tag immediately after the text that you want to appear as a hyperlink on the page.
- "http://www.google.com"
- <a href="http://www.yahoo.com">Yahoo</a>.
- <a href="bio.html">My Biography</a>
The answers for #17 - 20 are relative links because all of the pages are stored in your website at the same location.
- <p>Our <a href="meals.html">menus</a> offer a wide variety of entrees.</p>
- <p>Return to our <a href="index.html">home page</a>.</p>
- <p>Check out our <a href="meals.html">menus</a>.</p>
- <p>Meet the <a href="owners.html">owners</a>.</p>
Then answers for #21 - 22 are absolute links because these pages are not part of your website. They are at a different location on the Internet.
- <p>Our meals all follow the guidelines for a well-balanced diet based on the <a href="http://www.lifeclinic.com/focus/nutrition/food-pyramid.asp">UDSA's food pyramid</a>.</p>
- The owners earned a degree in <a href="http://www.parkland.edu/bai/food/">Food Service and Restaurant Management</a> from Parkland College in Champaign, Illinois.