answersLogoWhite

0


Best Answer

The beginning and end of the BODY section of an HTML document is delineated by the and tags respectively. Together, these tags mark off the extent of what would be called the body element.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What element do you use to beginning and end of the body of HTML document?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Marks the beginning and end of the body of an HTML document?

document  and


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 the first tag in every HTML document?

The HTML document begins,and ends with the tag . The element defines the whole HTML document. The element has a start tag and an end tag The Start element Tags within the HTML tags begins the content to be displayed for the web page (end body tag) The basic Tags needed to start an HTML document (and must be ended) look like this: This is where the content goes


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>


What are the last two tags of an HTML document?

The last two tags of an HTML document are the and tags. These tags mark the end of the body and the entire HTML document, respectively. Here's a breakdown of the structure: HTML Use code with caution. Learn more The tag indicates the end of the body content, which is where the visible elements of the web page are placed. It tells the browser that the structural elements of the page have been defined. The tag marks the end of the entire HTML document. It signals to the browser that it has reached the final element of the document and can start rendering the page. Together, these two tags enclose all the HTML content and provide a clear structure for the web page.

Related questions

Marks the beginning and end of the body of an HTML document?

document  and


What is the head tag in HTML document?

The <head> at the beginning of an HTML document comes between <html> and <body>. It is a container that includes information that relates to the entire document. You can include the following tags in the <head> tag: <title> (required in an HTML document), <style>, <base>, <link>, <meta>, <script>, and <noscript>.


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 the first tag in every HTML document?

The HTML document begins,and ends with the tag . The element defines the whole HTML document. The element has a start tag and an end tag The Start element Tags within the HTML tags begins the content to be displayed for the web page (end body tag) The basic Tags needed to start an HTML document (and must be ended) look like this: This is where the content goes


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>


What are the last two tags of an HTML document?

The last two tags of an HTML document are the and tags. These tags mark the end of the body and the entire HTML document, respectively. Here's a breakdown of the structure: HTML Use code with caution. Learn more The tag indicates the end of the body content, which is where the visible elements of the web page are placed. It tells the browser that the structural elements of the page have been defined. The tag marks the end of the entire HTML document. It signals to the browser that it has reached the final element of the document and can start rendering the page. Together, these two tags enclose all the HTML content and provide a clear structure for the web page.


Different heading levels of an HTML document?

<html> <head> <title> <body>


What are the basic elements of HTML document?

HTML head title /title meta style /style /head body /body /HTML


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


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 a formatting language that marks text with a set of tags that define the structure and behavior of a Web document?

The body element indicates structure and content.


What is the basic structure of an HTML?

The basic structure of HTML includes tags, attributes and elements. According to the W3C, all X/HTML documents must contain:A doctype declaration, to tell the browser what version of HTML is being used.An HTML element, which will contain all other elements. HEAD and BODY are the legal children for the HTML element.A HEAD element, used to hold meta data. There must be one and only one HEAD element, and it must be the first child of the HTML element.A TITLE element, which is a child of the HEAD element, and describes the content of the page for browsers and search engines.A BODY element, which holds all the page data. There must be one and only one BODY element, and it must be the second child of the HTML element.Give below is an example of the most basic HTML 5 document structure:A Basic HTML 5 PageWelcome to Answers.comGiven below is the example of the basic structure of an XHTML document (this language is in the process of being replaced by HTML 5):Page Title for Browser and Search EnginesWelcome to Answers.com