HTML Body

The body tag is one of the most important tags in a HTML document.

All the visible content on your webpage is in between the opening body tag and the closing body tag:

				
					<body>
    
</body>
				
			

When you have a body tag on your html document, you can add images, texts, paragraphs, buttons etc.

				
					<body>
    <h1>Welcome to Jamfinity!</h1>
    <p>Let's learn HTML</p>
</body>
				
			

Here is the example from our previous page:

The content between the opening and closing body tags are visible on our html document.

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments