answersLogoWhite

0


Best Answer

Most code is written within the body tags. What is inside the body is what is seen on the webpage itself when it is loaded. Some code can be written outside it, like the title in the head area.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Do you need to write HTML code within the a body tag for effective use of the code?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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.


How do you prepare an HTML?

The basic HTML base to a HTML website is <HTML> <title> </title> <head> </head> <body> </body> </HTML>


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

The html page <html> </html> and also the body <body></body> which contains the content.


Can you write somthing near the body in the HTML?

Your content goes between the body tags, so what ever you want to happen to the page must be within the body, however if you want to change the background color, then you have to enter the body...: <body bgcolor="choose your colour"> OR to add a background image <body background="insert img source here">


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 are the two HTML syntaxes?

HTML is a markup language and it's syntax is well defined. It can be used as <html><body>...</body></html>


What is the skeleton for an HTML based webpage?

<html> <head> <title></title> </head> <body> </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 is process of properly ordering HTML tags?

< html > < head > </ head > < body > </ body > </ html > Without spaces.


Coding for creating HTML editor using java applet?

<html> <body> java applets</body></html>


What is the HTML code needed for a website that displays Hello World?

No code is needed. If you wanted to, you could just make a blank HTML page and write "Hello world" on it with out any HTML code. Tumudracs improved answer: If you want to be a true HTML coder here is the code: <HTML> <head> <title> Hello World </title> </head> <body> Hello World </body> </HTML> If you wanna get technical, it would be <! DOCTYPE HTML PUBLIC "-//W3C DTD HTML 4.01//EN" "http://www.w3c.org/TR/html14/strict.dtd"> <HTML> <head> <meta http-equiv="Content-Type" content="text/HTML; charset=iso-8859-1"> <title>Hello World</title> </head> <body> <p> Hello World </p> </body> </HTML>


What are the basic elements of HTML document?

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