answersLogoWhite

0

Why you use body tag?

Updated: 8/10/2023
User Avatar

Wiki User

9y ago

Best Answer

You need to use a <body> tag because it defines the main body section of an HTML document. Here are the minimum tags required to create a web page:

<html>

<head><title>My Page</title></head>

<body>

Hello World!

</body>

</html>

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why you use body tag?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you use body tag and form tag together in HTML?

If you want to maintain W3C compliance, you can't use the FORM tag without the BODY tag. The FORM tag must be contained within the BODY tag. Like this &lt;html&gt; &lt;head&gt; &lt;title&gt;Our Cool Form Page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;form method="post" action="example.php"&gt; &lt;input type="submit" value="submit"&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt;


What is the end tag for a body tag?

&lt;/body&gt;


What is the tag used for scrollings in HTML?

You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.


Which tag is used to define body part of HTML?

The &lt;body&gt; tag starts it and &lt;/body&gt; ends it.


How do you put color on background for websites?

This is the HTML tag: &lt;body bgcolor="green"&gt; or you can use codes &lt;body bgcolor="#00FF00"&gt;


What is body tag in HTML?

A body tag defines the content of the web page. It defines what goes into the body of the page.


What HTML tag is used to mark the top of the page?

The first tag you use when developing an HTML document is the tag. The first tag you use for the main content of your page is the tag. is the tag that marks the top of an HTML page. The minimum required first like is , which starts the definition of the page content.


When creating a hashtag on twitter for an event is it correct to tell attendees to follow the tag or to use the tag?

To use the tag.


How do you center your webpage?

Create a container DIV tag within the BODY tag and use CSS to center it in the browser.Example:Inside the CSS file.html body #container {width: 989px;margin: 0 auto;}Inside the HTML file:Page content here.


What three tags create the body of the form in HTML?

A form can be created in HTML using the &lt;form&gt; tag. Inside form tag we can use elements like input, submit or reset.


Is Slash is used to create a closing tag?

Yes. &lt;FORM&gt; is the opening tag whereas &lt;/FORM&gt; is the closing tag. This &lt;/TAG&gt; to close tags is applicable for most tages. ex: &lt;HTML&gt; &lt;/HTML&gt; &lt;BODY&gt; &lt;/BODY&gt; etc...


What element is used for writing regular body text?

The HTML element that tells the browser how to find the body of the page is the &lt;body&gt; tag. When you are done with the body, close the section with the companion &lt;/body&gt; tag.