answersLogoWhite

0

What is the effect of body tag in HTML?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

The BODY tag in HTML defines the portion of the HTML document in which the actual content of the page will be. For instance, images, text, links, Flash and everything else that renders when the browser loads the page is defined within the BODY tag.

Compare this to its sibling tag, HEAD, which contains metadata that describes the data within the BODY.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the effect of body tag in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the effect of body in HTML?

The <body></body> tag defines the body of an HTML document. Here is the minimum format needed for a basic HTML page. <html> <head> <title>Title</title> </head> <body> Stuff goes here... </body> </html>


What is the effect in the body?

The <body></body> tag defines the body of an HTML document. Here is the minimum format needed for a basic HTML page. <html> <head> <title>Title</title> </head> <body> Stuff goes here... </body> </html>


What should be the last command in any HTML document?

The last command in any HTML document is a closing HTML tag. Just before it is the closing BODY tag. </BODY> <HTML>


Which tag is used to define body part of HTML?

The <body> tag starts it and </body> ends it.


Which HTML tags do you close out at the very end?

The very last tag should be the closing HTML tag. It would be done like this: </html> Before that you would normally close the Body tag, like this: </body>


What is the code for case sensitive in HTML?

HTML in not case sensitive i.e. upper and lowercase does not matter. For example: <body> tag and <BODY> tag are the same.


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.


Is Slash is used to create a closing tag?

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


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 <html> <head> <title>Our Cool Form Page</title> </head> <body> <form method="post" action="example.php"> <input type="submit" value="submit"> </form> </body> </html>


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.


What is a tag List 10 HTML tag?

There are various tags in HTML that can be used. 10 of them are: p, a, br, head, body, html, title, script, link, style.


What HTML tag element surrounds all the other tags in the document?

The HTML tag surrounds all others: <html></html> The BODY tag surrounds all of the content tags: <body></body> Note: Right-click a page in your browser & choose View Source. Then look at the top and bottom of the text to see how these play out. Exception to the rule: There is sometimes a !DOCTYPE tag that appears before (outside of) the HTML tag, but there are no tags that appear after it.