answersLogoWhite

0

Code in the head tag will be executed before that in the body, because of the order of page loading. Additionally, anything written to the body using the document.write method goes in the position of a script tag in the body

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Engineering

What is the skeleton for an HTML based webpage?

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


What are the Two main parts of an HTML document?

Heading, denoted by the tages <head> </head> and body denoted by <body> </body>


Can a TITLE tag can be used in any section of a webpage?

No, it must be used in the section of your HTML document. Here is an example of how to use it: <html> <head> <title>Web Page</title> </head> <body> </body> </html>


Why you use body tag?

You need to use a <body> tag because it defines the main body section of an HTML document. Here are the minimum tags required to create a web page: <html> <head><title>My Page</title></head> <body> Hello World! </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>

Related Questions

How do you prepare an HTML?

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


What is the skeleton for an HTML based webpage?

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


What is process of properly ordering HTML tags?

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


What are the basic elements of HTML document?

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


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 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 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 the difference between HTML head tag and body tag?

The <HEAD> tag is used to display the heading information like company name, page title etc in the web page The <BODY> tag is used to display the body of the web page - which contains all the contents you want to display


Different heading levels of an HTML document?

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


What is HTML file for?

Basically, it tell a browser that what follow is written in the HTML markup language. This allows the browsetr to look for the relevant tags to properly display the context. Relevant tags are: <html> <head> </head> <body> </body> </html>


What are the Two main parts of an HTML document?

Heading, denoted by the tages <head> </head> and body denoted by <body> </body>


Can a TITLE tag can be used in any section of a webpage?

No, it must be used in the section of your HTML document. Here is an example of how to use it: <html> <head> <title>Web Page</title> </head> <body> </body> </html>