answersLogoWhite

0

Well,

- Contains information about the page such as the TITLE, META tags for proper Search Engine indexing, STYLE tags, which determine the page layout, and JavaScript coding for special effects.

Closes The Head Area

----

Hope This Helps,

JBird608

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

What do you mean by HTML header?

HTML header is placed on the top of a HTML page. It is wrapped inside the <head> element.


What do you mean by header?

HTML header is placed on the top of a HTML page. It is wrapped inside the <head> element.


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


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: <html> <head> <title>Webste title that appears like Random - "internet browser"</title> </head> <body> Information that is in the actual viewing area </body> </html>


What HTML element is always found within a HEAD container?

The only HTML element that is required in the HEAD section of an HTML document (according to the W3C specifications for HTML 4, HTML 5 and XHTML) is the TITLE element.


Different heading levels of an HTML document?

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


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


Title in HTML?

A HTML document's title refers to the text that appears in the tabs on a surfer's browser, basically it is the name of the page. The tag to set the title goes in the HEAD section of the HTML document, you add the tag: <title>Your Title Goes Here</title> Again, this belongs in the head, so like this: <!doctype HTML> <HTML> <head> <title>Your Title Goes Here</title> </head> <body> Page content here </body> </HTML>