Exercise Three

Create an HTML page with five paragraphs of text, each paragraph containing two hyper-references; this means a total of ten hyper-references for the entire HTML page. You may use whatever content you like for your paragraphs, even filler content.

Again, code EVERYTHING by hand. Do not use copy-and-paste or built-in tools in your HTML editor to make tag generation easier; you need the practice of hand-coding every character of HTML in order to imprint this material into your brain.

Here are ten URLs:

http://www.yahoo.com/
http://www.macromedia.com/
http://www.netscape.com/
http://www.microsoft.com/
http://www.michaelmasumoto.com/
http://www.webmonkey.com/
http://msp.sfsu.edu/
http://www.amazon.com/
http://www.adobe.com/
http://www.apple.com/

Sample Code:

<p>Hi There. This is a link that will invoke <a href="http://www.macromedia.com/">Macromedia</a>'s default HTML page. Notice how I have marked only the text that I actually wanted hot? I could place a link to <a href="http://www.netscape.com/">Netscape</a> here, as well, which invokes Netscape's default HTML page. Do not use this text!</p>

Main Menu