HTML
|
JavaScript
Alignment
Basics
Character Codes
Colors
CSS
DIVS
Forms
Frames
Links
Lists and Bullets
Meta Tags
Multimedia
Pictures
Spacing
Tables
Text
Create HTML Doc
FAQ
General Info
Required Tags
Tag Information
Required Tags
337
Required Tags
Description
The required tags are:
<HTML>
<HEAD>
<TITLE>
<BODY>
Most often the majority of your content goes in the body section.
Below is an example of how the tags should be laid out, including their closing tags.
Code
<HTML>
<HEAD> <TITLE>My Homepage</TITLE> </HEAD>
<BODY>
</BODY>
</HTML>
Output
n/a
Practice
<HTML> <HEAD> <TITLE>My Homepage</TITLE> </HEAD> <BODY> </BODY> </HTML>
Advertisements