Thursday, August 16, 2007

HTML Web Design - Lesson 03

New tags you will need to memorize:

<html>

<head> - tags that are nested within the head tags (i.e. title) are not intended to be viewed on the page.

<title></title> - this tag contains the text that will be displayed in the title of the browser window.

</head> - the "end head tag" goes right before the "open body tag".

<body> - tags nested within the body tags are in intended for viewing on the page.

<h1 ></h1> - big level 1 heading

<h2 ></h2> - slightly smaller level 2 heading

<h3 ></h3> - little level 3 heading

<hr /> - horizontal rule. this is an empty tag (it doesn't have a separate closing tag)

<br /> - line break. this is an empty tag also.

<img src="" / > - the image tag can load files from anywhere accessible on the local machine/network, or internet

</body>

</html>

No comments: