HTML Page Structure - the Html, Head & Body Tags
Description
All HTML pages consists of the following framework:
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
A web page is one document or file with HTML tags/elements in the same order and manner as the above text. The document or file is saved with the file extension .html or .htm.
For example: myfirstwebpage.html
All HTML/web pages start and end with the 'html' tag.