HTML < body > Tag - Learn About Website | DaddyFile

0

HTML <body> Tag

Example

A simple HTML document, with the minimum of required tags:


<html>
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document......
</body>

</html>

Definition and Usage

The <body> tag defines the document's body.
The <body> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.

Differences Between HTML 4.01 and HTML5

All layout attributes are removed in HTML5.

Post a Comment

 
Top