Site hosted by Angelfire.com: Build your free website today!
Tags to Remember Definitions
<html> … </html> Always at the beginning and the end of an HTML document. Incloses the entire HTML document.
<head> … </head>  It encloses the head of the document. Also the top bar of the window.
<title> … </title>  The title is always found within the <head> tags
<body> … </body>  Encloses the body of the document. Always comes after the closing tag of the </head>
<p> … </p>  These mark the beginning and end of a paragraph and they also an extra blank line.
<br/>  Line Break. Like hitting the return key
<hr />  Horizontal Rule Line- used to break up a document.
<h1> … </h1> First level heading
<h2> … </h2> Second level heading
<h3> … </h3> Third level heading
<h4> … </h4> Fourth level heading (seldom used)
<h5> … </h5> Fifth level heading (seldom used)
<h6> … </h6> Sixth level heading (seldom used)
<a>

 Anchor Tag . A tag that contains an attribute

Absolute

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

Relative

<a href = "Assignment1.html"> Assignment 1</a>

Open in a Separate Window

<a href = "Assignment1.html" target = "_blank"> Assignment 1</a>