|
Tutorials: Basic HTML Tags and Attributes
HTML Tag
This tag opens and closes your document and tells the browser where your HTML Document starts and stops. Everything in your HTML Document should go between these tags. If you put anything outside these two tags then it will be ignored by the browser! Here is an example...
<HTML>
<HEAD>
<TITLE> Everything Goes Between the HTML Tag </TITLE>
</HEAD>
<BODY>
Everything goes between the HTML Tags
</BODY>
</HTML>
Text here will not show up because it is outside the HTML Tags
|
[Return to HTML Tutorials]
|