Step 1:
Every page begins the with <HTML> tag and ends with the </HTML> tag, so you must add them to your page. The whole web page will be created between these two tags. Most tags have an opener tag <> and a closing tag </>
Step 2:
After the opening <HTML> tag comes along the <HEAD> tag, which contains information about the document, like the title or the background color, etc..
Step 3:
Several tags are able to be inserted between the <HEAD> tags, but the only one must be inserted is the <TITLE> tag, which puts text on the browser's title bar. For example, type <TITLE>Ack HTML | Basics</TITLE>, then close that whole statement with the </HEAD> tag.
<HTML>
<HEAD>
<TITLE>Ack HTML | Basics</TITLE>
</HEAD>
</HTML> |
Step 4:
Finally, the <BODY> tags is where all the content that appears on the web page will go between. Must have a beginning (<BODY> and a closing </BODY>).
<HTML>
<HEAD>
<TITLE>Ack HTML | Basics</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML> |