HomeReferencesHTML Tags

HTML Tag: body

The main body of an HTML document where all of the content is placed. You must use this element and it should be used just once. It must start immediately after the closing head tag and end directly before the closing html tag.

HTML Dog, The Book HTML Dog book cover

HTML Dog is hosted by Titan Internet

Required Attributes

  • None.

Optional Attributes

Example


<html>
	<head>
	</head>
	<body>
		[a whole load of stuff]
	</body>
</html>