The document as a whole needs a basic structure of HTML tags, which include inside them a HEAD tag and a BODY tag. For example:
<HTML>
	<HEAD>
		<TITLE >
		My Document Title
		</TITLE>
	</HEAD>
	<BODY>
		The contents of my document
	</BODY>
</HTML>