answersLogoWhite

0


Best Answer

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

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

The head tags contain general information about the HTML document. Tags that can be included within the head tags are: <meta>, <title>, <style>, <base>, <link>, and <script>. The Meta tags are used to provide information to the browsers or search engines. This is where the Keywords, and description of the page is located. The information provided in the head tags does not display in the web page..

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

The head tag includes everything you would you would usually put in the header of a website. ie name, company picture etc.

However the title tag is a tag you can place inside the head tag to say what the title of the website is going to be.

The main difference is the head tag can have multiple tags within in whereas the title tag is a tag that can go inside a head tag

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What do head in HTML mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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 &lt;head&gt; element.


What do you mean by header?

HTML header is placed on the top of a HTML page. It is wrapped inside the &lt;head&gt; element.


How do you prepare an HTML?

The basic HTML base to a HTML website is &lt;HTML&gt; &lt;title&gt; &lt;/title&gt; &lt;head&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/HTML&gt;


What is the skeleton for an HTML based webpage?

&lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/html&gt;


What is process of properly ordering HTML tags?

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


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.


What is the effect of body in HTML?

The &lt;body&gt;&lt;/body&gt; tag defines the body of an HTML document. Here is the minimum format needed for a basic HTML page. &lt;html&gt; &lt;head&gt; &lt;title&gt;Title&lt;/title&gt; &lt;/head&gt; &lt;body&gt; Stuff goes here... &lt;/body&gt; &lt;/html&gt;


Different heading levels of an HTML document?

&lt;html&gt; &lt;head&gt; &lt;title&gt; &lt;body&gt;


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: &lt;html&gt; &lt;head&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/html&gt;


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: &lt;title&gt;Your Title Goes Here&lt;/title&gt; Again, this belongs in the head, so like this: &lt;!doctype HTML&gt; &lt;HTML&gt; &lt;head&gt; &lt;title&gt;Your Title Goes Here&lt;/title&gt; &lt;/head&gt; &lt;body&gt; Page content here &lt;/body&gt; &lt;/HTML&gt;