No funny alt tags here. This is all business.
   

How do I start a web document?


Just naming something with the file extension '.html' makes it an HTML file, but an HTML file needs a few basic lines of code to be considered a web document.

Always start your documents with

<HTML>
and end them with
</HTML>

Other important tags are

<HEAD> </HEAD>
and
<BODY> </BODY>
These tags divide the page into embedded information and the part visible in the browser.