answersLogoWhite

0


Best Answer

<TITLE> </TITLE>, Text formatting tags

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which tags are allowed in the HTML head portion of the HTML document?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the head tag in HTML document?

The &lt;head&gt; at the beginning of an HTML document comes between &lt;html&gt; and &lt;body&gt;. It is a container that includes information that relates to the entire document. You can include the following tags in the &lt;head&gt; tag: &lt;title&gt; (required in an HTML document), &lt;style&gt;, &lt;base&gt;, &lt;link&gt;, &lt;meta&gt;, &lt;script&gt;, and &lt;noscript&gt;.


What are the basic elements of HTML document?

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


Different heading levels of an HTML document?

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


What part of a HTML document is hidden?

Any text in between &lt;head&gt; and &lt;/head&gt;.


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;


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 element can only be discovered in the head section of an HTML document?

The title.


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.


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;


Which elements are mandatory in an XHTML document?

doctype, html,head, body, and title


Can you provide coding of net?

An example of HTML, probably the most common web coding langue, would be this: &lt;html&gt; //This defines that it is an HTML document &lt;head&gt; //This defines the head of the document &lt;title&gt;Example Webpage&lt;/title&gt; //This defines the title of the webpage &lt;/head&gt; //This closes the head of the document &lt;body&gt; //This defines the body of the document, the main content Hello world! &lt;br&gt; //This defines a page break &lt;b&gt;I am bold text&lt;/b&gt; //This makes the text bold &lt;/body&gt; //This closes the body &lt;/html&gt; //This closes the document This is just an example, there is alot more that can be done with HTML. A good resource to learn HTML, as well as CSS and PHP (two more very common codes for the web) would be w3schools.com


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;