answersLogoWhite

0

What is the effect of body in HTML?

Updated: 8/20/2019
User Avatar

Wiki User

9y ago

Best Answer

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>

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

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

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;


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 tag in HTML?

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.


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 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.


Coding for creating HTML editor using java applet?

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


What are the basic elements of HTML document?

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


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


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. &lt;/BODY&gt; &lt;HTML&gt;