Tags


A tag is a reference in an HTML document which describes the style and structure of the document. All tags start with < and end with >. Tags which mark a beginning have no /. Tags which mark an ending have a / immediately after <, as in </.

<HTML>
<HEAD>
<TITLE>My Home Page</TITLE>
</HEAD>

<!-- Written by me -->
<!-- Created:  yesterday -->
<!-- Last modified:  today -->

<BODY>

This is where the text goes. 

</BODY>
</HTML>

I understand what <, > and / are for, but I want to know more about tags.


[INDEX] [PREVIOUS] [NEXT PAGE] [CHAPTER 1]

Valid HTML 3.2!