answersLogoWhite

0

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

11y ago

What else can I help you with?

Continue Learning about Engineering

How do you write the HTML code for full name?

To write HTML code for a full name, you can use a simple structure with appropriate HTML tags. For example: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Full Name</title> </head> <body> <h1>John Doe</h1> </body> </html> In this code, the full name "John Doe" is placed within an <h1> tag to display it as a heading.


What is the skeleton for an HTML based webpage?

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


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

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.


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>


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


Coding for creating HTML editor using java applet?

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


What is process of properly ordering HTML tags?

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


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