answersLogoWhite

0

What is the head tag in HTML document?

Updated: 8/20/2019
User Avatar

Wiki User

9y ago

Best Answer

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

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the head tag in HTML document?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the first tag in every HTML document?

The HTML document begins,and ends with the tag . The element defines the whole HTML document. The element has a start tag and an end tag The Start element Tags within the HTML tags begins the content to be displayed for the web page (end body tag) The basic Tags needed to start an HTML document (and must be ended) look like this: This is where the content goes


What is the 'head' HTML tag for?

The &lt;head&gt; tag in an HTML document is used to hold data that describes the rest of the document. For instance, the title of the document that shows up in search engines and the users browser is placed in the HEAD section. The HEAD also contains things like styles, which describe what the document should look like in the browser, and scripts, which effect the function of the page.


What is document tag in HTML?

HTML does not have a DOCUMENT tag. The closest thing it has is DOCTYPE, which specifies which specification of HTML (there are several versions) is being used for that page.


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;


Is the head tag used to give a heading to the webpage?

No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags, through to that can be used to put titles in parts of a html document. The head tag defines the head area of the document. Lots of settings and information about the document is put in the head area. These are not visible when the page loads into a browser.No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags, through to that can be used to put titles in parts of a html document. The head tag defines the head area of the document. Lots of settings and information about the document is put in the head area. These are not visible when the page loads into a browser.No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags, through to that can be used to put titles in parts of a html document. The head tag defines the head area of the document. Lots of settings and information about the document is put in the head area. These are not visible when the page loads into a browser.No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags, through to that can be used to put titles in parts of a html document. The head tag defines the head area of the document. Lots of settings and information about the document is put in the head area. These are not visible when the page loads into a browser.No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags, through to that can be used to put titles in parts of a html document. The head tag defines the head area of the document. Lots of settings and information about the document is put in the head area. These are not visible when the page loads into a browser.No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags, through to that can be used to put titles in parts of a html document. The head tag defines the head area of the document. Lots of settings and information about the document is put in the head area. These are not visible when the page loads into a browser.No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags, through to that can be used to put titles in parts of a html document. The head tag defines the head area of the document. Lots of settings and information about the document is put in the head area. These are not visible when the page loads into a browser.No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags, through to that can be used to put titles in parts of a html document. The head tag defines the head area of the document. Lots of settings and information about the document is put in the head area. These are not visible when the page loads into a browser.No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags, through to that can be used to put titles in parts of a html document. The head tag defines the head area of the document. Lots of settings and information about the document is put in the head area. These are not visible when the page loads into a browser.No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags, through to that can be used to put titles in parts of a html document. The head tag defines the head area of the document. Lots of settings and information about the document is put in the head area. These are not visible when the page loads into a browser.No. The title tag can be used to put a title on the title bar and the tab headers. There are also 6 title tags, through to that can be used to put titles in parts of a html document. The head tag defines the head area of the document. Lots of settings and information about the document is put in the head area. These are not visible when the page loads into a browser.


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. &lt;/BODY&gt; &lt;HTML&gt;


The title tag belongs where in your HTML?

Anywhere in the HEAD section of the HTML document. The W3C specification says that the TITLE tag must be present for the document to be considered valid. It should be a child of the HEAD element, but the specific location therein doesn't make a difference.


What are the Two main parts of an HTML document?

Heading, denoted by the tages &lt;head&gt; &lt;/head&gt; and body denoted by &lt;body&gt; &lt;/body&gt;


The tag that appears after the HTML tag is?

&lt;head&gt;


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


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;


Why you use body tag?

You need to use a &lt;body&gt; tag because it defines the main body section of an HTML document. Here are the minimum tags required to create a web page: &lt;html&gt; &lt;head&gt;&lt;title&gt;My Page&lt;/title&gt;&lt;/head&gt; &lt;body&gt; Hello World! &lt;/body&gt; &lt;/html&gt;