answersLogoWhite

0

The head element is a container for all the head elements. Elements inside <head> can include scripts, instruct the browser where to find style sheets, provide meta information, and more. The following tags can be added to the head section: <base>, <link>, <meta>, <script>, <style>, and <title>. The <title> tag defines the title of the document, and is the only required element in the head section!

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you write the code in the head section of a document to force the file to always appear within the inline frame of an HTML file?

You can wrap all the code in the frame tag. This will cause the head section to view in the frame.


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 happen when you place functions in the head section of the HTML document?

You can place functions in the head section. They will be styled the same way head is styled.


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 are the two page section in HTML?

Head and body are the two sections of a HTML document with head containing information usually not seen by the user and everything in the body section being seen by the user.


What element can only be discovered in the head section of an HTML document?

The title.


How many section of HTML document?

There are six headings that are available to be used in HTML. The range from H1 to H6. An H1 is more important then H6 heading. There should only be one H1 heading on any single HTML page.


Example of webpage in HTML?

If you want to see an example HTML code for a web page, you can simply right click on any web page and select "display source code". In Microsoft Internet Explorer, you can click View Source in the toolbar. A Quick Example: &lt;html&gt; &lt;head&gt; &lt;title&gt;THE TITLE OF THE PAGE&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;Hello, This Is An Example Page&lt;/p&gt; &lt;br&gt; &lt;br&gt; &lt;p&gt;This Is Another Paragraph&lt;/p&gt; &lt;p&gt;And So Is This&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; As you can see, HTML pages work around tags. (E.g. &lt;html&gt; and &lt;/html&gt;) ---------------------------------- Some basic tags: &lt;html&gt; &amp; &lt;/html&gt; -- start and end of the page &lt;head&gt; &amp; &lt;/head&gt; -- properties hidden to the user, such as page title &lt;body&gt; &amp; &lt;/bdoy&gt; -- the page's body, the actual website the user will see &lt;title&gt; &amp; &lt;/title&gt; -- page title, this has to be inside the &lt;head&gt; section &lt;br&gt; -- line break (like pressing enter) &lt;p&gt; &amp; &lt;/p&gt; -- a paragraph of text ---------------------------------- For examples with clear HTML code, see related links.


What is the HTML code needed for a website that displays Hello World?

No code is needed. If you wanted to, you could just make a blank HTML page and write "Hello world" on it with out any HTML code. Tumudracs improved answer: If you want to be a true HTML coder here is the code: &lt;HTML&gt; &lt;head&gt; &lt;title&gt; Hello World &lt;/title&gt; &lt;/head&gt; &lt;body&gt; Hello World &lt;/body&gt; &lt;/HTML&gt; If you wanna get technical, it would be &lt;! DOCTYPE HTML PUBLIC "-//W3C DTD HTML 4.01//EN" "http://www.w3c.org/TR/html14/strict.dtd"&gt; &lt;HTML&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/HTML; charset=iso-8859-1"&gt; &lt;title&gt;Hello World&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt; Hello World &lt;/p&gt; &lt;/body&gt; &lt;/HTML&gt;


In order to program HTML code do you need an expensive program?

In order to code HTML you do not need an expensive program. HTML can be coded in Notepad if you want to. I recommend Komodo Edit. It is a free program that I use to code. You can download it from the link in the "Related Links" section.


What are the components of a HTML file?

The HTML file contains various components. &lt;HTML&gt; tag is used for the beginning of the code. &lt;HEAD&gt; and &lt;BODY&gt; tags are for the content.


What is the HTML head used for?

The HTML (Hyper Text Mark-up Language) head code is a container for all of the head elements of the page. This should include the title and can also include scripts.