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

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


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