answersLogoWhite

0


Best Answer

Technically it should be included, but many browsers assume its existence if it isn't there. (if i recall correctly)

If you want to stay compliant with the W3C specifications, however, you must have a body tag. It must be the only body tag in the page, it must be a direct child of the HTML tag, and it must be preceded by 1 and only 1 HEAD tag.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is the body tag required for all HTML documents?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

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 basic structure of HTML?

A HTML file has the below structure <HTML> <HEAD> <TITLE> Title of the Web page <TITLE> Header of the Web page </HEAD> <BODY> Body of the Web Page </BODY> </HTML> The file has a .HTML extension and can be viewed in any web browser like IE or chrome or Mozilla


What is a simple program used to create HTML documents?

Any simple text editor can be used to create an HTML document. HTML documents are just simple text, so any basic editor will do the job. Notepad, Vim, or Emacs are all good examples of very simple programs used to create HTML documents. (I'm not sure of the Macintosh equivalent to these, but that would work just as well.)


What is a link of documents images and sounds?

Anchor tag can be used to link different elements in HTML. Documents, sounds and images all can be linked using the anchor tag.


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.

Related questions

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.


Which tag is not required for an HTML page?

The only tags needed are the HTML, HEAD, TITLE and BODY tags, with their corresponding closing tags. All other tags can said to be not required, though obviously many of them will be used, as otherwise your page would be very plain.


What is a basic structure of HTML?

A HTML file has the below structure <HTML> <HEAD> <TITLE> Title of the Web page <TITLE> Header of the Web page </HEAD> <BODY> Body of the Web Page </BODY> </HTML> The file has a .HTML extension and can be viewed in any web browser like IE or chrome or Mozilla


Are Documents on the world wide web are linked by hypertext markup language?

HTML is the main language of the web - any webpage is written in it. There are other programming languages behind the mechanics of many sites, but everything has HTML in it. There are a few non HTML documents kicking around on the web, such as PDFs and text files. But these will all be linked to from HTML files.


What is a simple program used to create HTML documents?

Any simple text editor can be used to create an HTML document. HTML documents are just simple text, so any basic editor will do the job. Notepad, Vim, or Emacs are all good examples of very simple programs used to create HTML documents. (I'm not sure of the Macintosh equivalent to these, but that would work just as well.)


What is a link of documents images and sounds?

Anchor tag can be used to link different elements in HTML. Documents, sounds and images all can be linked using the anchor tag.


What required all official documents to have a british stamp?

Stamp act


Which export documents are required to be prepared by the exporter himself?

The Power of Attorney, the Commercial Invoice, and the Pro Forma invoice are all export documents that are required to be prepared by the exporter himself.


What did the stamp act required colonist to do?

pay taxes on all legal documents


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.


What are HTML tags what are the required HTML tags in creating webpages describe what these tags do?

HTML tags are like containers for content. They tell how the content should be displayed. Tags in HTML should be enclosed with < and >. Most tags consist of an opening tab ie <HTML> and a closing tag ie </HTML>. The proper action is then taken concerning the content in between them. There are many tags that can be used, however very few are required. It is recommended that all HTML pages begin with the <HTML> tag, and end with the corresponding closing tag </HTML>. For example: <HTML> <head> info here is for the browser, not displayed to the user </head> <body> this is where the page content goes </body> </HTML> I've found w3schools to be very helpful in learning HTML. A few other useful tags include: <form></form> (for making forms), <table></table> (for tables, with <tr> and <td> to make rows and columns respectively), <h1></h1> (the largest header), and <p></p> (a paragraph.)


What are four basic tags needed for every single webpage?

These are the Basic Eight: <html> <head> <title> Data Value </title> <body> </body> </html> A good site to check out would be http://www.htmlcodetutorial.com