The HTML Tag


All HTML documents should begin with <HTML> and end with </HTML> tags. The <HTML> element indicates to the browser that this is an HTML document. The basic source code example shown below starts with <HTML> and ends with </HTML>.

<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 the HTML tag. What is next?


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

Valid HTML 3.2!