You are on page 1of 2

2.

1—HTML DAY 2 Worksheet Page 83


Warmup: FORMAT OF AN HTML FILE (Webpage).
A webpage always follows the following order:
Draw arrows pointing to where each element would be placed.
<html>

<head> </head>

<body> </body>

</html>

Activity #1: PRACTICE WORKING WITH MARKUP TAGS


(formattingactivity.html)
Activity #3: The HYPERLINK markup. (Hyperlink.html)
<a href=“URL”> LINK TEXT HERE </a>
On Off

I DO: Make a link to Google.com (http://www.google.com)

<a href=“http://www.google.com”>Google.com</a>

WE DO: Make a link to Altavista (http://www.altavista.com)

<a href=“_________________________________________”>_____________________________________</a>

YOU DO: Make the rest of the webpage. You’ve


already done the 1st 2 links.

The HYPERLINK markup (with TARGET)


<a href=“URL” target=“?”> </a>
On Off

“Blank,” “new”

I DO: Make a link to Google.com (http://www.google.com) that opens in a new window.

<a href=“http://www.google.com” target=“new”>Google.com</a>

WE DO: Make a link to Altavista (http://www.altavista.com)

<a href=“http://www.altavista.com” target=“new”>AltaVista.com</a>

YOU DO: Add the 5 more links to your webpage using the TARGET attribute.

You might also like