HTML - <body> Tag



The HTML body tag includes all of the page's primary content, including headings, paragraphs, graphics, tables, etc. The <body> tag contains everything you see in a web browser and is enclosed within the <html> tag.

HTML is made up of a number of elements that are used to structure web pages, such as the <head> and <title> tags. The HTML <body> Tag is one such element that serves as a container for all the other webpage elements.

Syntax

Following is the syntax of <body> tag −

<body> … //content </body>

Example

In the following example, we are creating an HTML document along with a <body> element, which keeps the heading and div of the page as follows:

<!DOCTYPE html>
<html>
<body>
   <h1>Tutorialspoint Online HTML Editor</h1>
   <div>This is real time online HTML Editor</div>
</body>
</html>

When we run the above code, it will generate an output displaying the text of the h1 and div tags on the webpage.

Example

In the following example, we are creating an HTML document along with a <body> element, which keeps the heading, div and paragraph of the page as follows −

<!DOCTYPE html>
<html>
<body>
   <h1>Tutorialspoint Online HTML Editor</h1>
   <div>This is real time online HTML Editor</div>
   <p>Tutorialspoint easy to learn!</p>
</body>
</html>

On running the above code, the output window will pop up, displaying the text of h1, div and p tags on the webpage.

Example

In the following example, we are creating an HTML documents which keep the image tag inside the body element as follows

<!DOCTYPE html>
<html>
<body>
   <h2>This is tutorialspoint logo!</h2>
   <img src="https://www.tutorialspoint.com/images/logo.png?v2" alt="img" />
</body>
</html>

When we run the above code, it will generate an output consisting of the image displayed on the webpage.

Example

In the following example, we are keeping the hyperlinks tag inside the body tag as follows −

<!DOCTYPE html>
<html>
<body>
   <a href="https://www.tutorialspoint.com/index.htm">Tutorialspoint.com</a>
   <a href="https://www.tutorialspoint.com/codingground.htm">Coding Ground</a>
</body>
</html>

On running the above code, the output window will pop up, displaying the hyperlink on the webpage. when the user tries to click on the link it will redirect to the given page.

html_tags_reference.htm
Advertisements