HTML Sectioning root Cheat Sheet

<body> … </body>The HTML <body> Element represents the content of an HTML document. There can be only
one <body> element in a document

Example

<html>
<head>
 <title>Document title</title>
</head>
<body>
 <p>This is a paragraph</p>
</body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *