answersLogoWhite

0

What does body in HTML mean?

Updated: 8/10/2023
User Avatar

Wiki User

12y ago

Best Answer

Well,

- This is where you will begin writing your document and placing your HTML codes.

- Closes the HTML tag.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

The body (<body>) is where all the actual content lies; text, images, etc...

The heading (<head>) is where items like style sheets and external JavaScript files, and the title go.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

The content in the body tag is what is displayed on the actual document.

This answer is:
User Avatar

User Avatar

Wiki User

8y ago

The body tag does not contain anything until you add content to it.

This answer is:
User Avatar

User Avatar

Wiki User

8y ago

"body" is an HTML keyword used to mark the body block of the code that describes the page.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does body in HTML mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does h1 in HTML stand for?

Heading 1 For example, this would mean that HOME is the first heading in HTML. &lt;html&gt; &lt;body&gt; &lt;h1&gt; HOME &lt;/h1&gt; &lt;/body&gt; &lt;/html&gt;


How do you submit an HTML?

I don't understand exactly what you mean by that but if you simply save a file with the extension .HTML it will be a HTML file that you can publish online. for eg &lt;HTML&gt; &lt;body&gt; This is my HTML page &lt;/body&gt; &lt;/HTML&gt; will simply show "This is my HTML page" on your web browser hope i helped


How do you prepare an HTML?

The basic HTML base to a HTML website is &lt;HTML&gt; &lt;title&gt; &lt;/title&gt; &lt;head&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/HTML&gt;


What are the two main parts of an HTML file What tags create them?

The html page &lt;html&gt; &lt;/html&gt; and also the body &lt;body&gt;&lt;/body&gt; which contains the content.


What is the effect of body in HTML?

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


What are the two HTML syntaxes?

HTML is a markup language and it's syntax is well defined. It can be used as &lt;html&gt;&lt;body&gt;...&lt;/body&gt;&lt;/html&gt;


What is the skeleton for an HTML based webpage?

&lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/html&gt;


What is the effect in the body?

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


Coding for creating HTML editor using java applet?

&lt;html&gt; &lt;body&gt; java applets&lt;/body&gt;&lt;/html&gt;


What is process of properly ordering HTML tags?

&lt; html &gt; &lt; head &gt; &lt;/ head &gt; &lt; body &gt; &lt;/ body &gt; &lt;/ html &gt; Without spaces.


What are the basic elements of HTML document?

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


Example of a HTML documents?

A HTML document is just a website. If you mean a code however, here is one random one. Basic too. Code: &lt;html&gt; &lt;head&gt; &lt;title&gt;Webste title that appears like Random - "internet browser"&lt;/title&gt; &lt;/head&gt; &lt;body&gt; Information that is in the actual viewing area &lt;/body&gt; &lt;/html&gt;