The <body>
tag defines the main content of the HTML document that will be directly visible on your web page. This body tag <body>
contains all the content of an HTML document, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
Using <body>
to create a simple webpage.
<html> <head> <title>Title of the document</title> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>
<body></body>
<body>
element in an HTML document.<body>
tag should be placed under the closing </head>
tag.<body>
tag.</body>
tag. For more information, see http://www.w3schools.com/tags/tag_body.asp
Found a bug in the documentation? Let us know at documentation@code.org