Use quote marks to find an "exact phrase"

Print version

print icon

8: Page structure: HTML outline

The four essential parts of the HTML document

An HTML document comprises the four parts shown below. Click on the headings for a full explanation. In the section underneath you can see how they look when they are put together.

Putting it all together

This is what you get when you put all the above bits together – the skeleton of an HTML document.


<!DOCTYPE html>		
 <html lang="en">
				
  <head>
		
		
(content of 'head' section)
		
		
  </head>
  <body>
		
		
(visible content of web page)
		
		
  </body>
</html>