answersLogoWhite

0

What is the HTML head used for?

User Avatar

Anonymous

11y ago
Updated: 8/20/2019

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.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

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


How do you prepare an HTML?

The basic HTML base to a HTML website is <HTML> <title> </title> <head> </head> <body> </body> </HTML>


What are the components of a HTML file?

The HTML file contains various components. <HTML> tag is used for the beginning of the code. <HEAD> and <BODY> tags are for the content.


What is the skeleton for an HTML based webpage?

<html> <head> <title></title> </head> <body> </body> </html>


What is HTML file?

An HTML file is a web document the web browsers read. HTML is anextremely used in website. It stands for: Hyper Text Markup Language. Here's what it looks : <html> <head> <title>My HTML Page</title> </head> <body bgcolor=CC0000> (Website content here) </body> </html>


What is process of properly ordering HTML tags?

< html > < head > </ head > < body > </ body > </ html > Without spaces.


What is a tag List 10 HTML tag?

There are various tags in HTML that can be used. 10 of them are: p, a, br, head, body, html, title, script, link, style.


What are the basic elements of HTML document?

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


Can you tell language is used to create webpages along with text?

HTML is the standard language for creating web pages. You can include text in web page using HTML and CSS can be used to format the text. Here is an example of the simplest HTML: <html> <head></head> <body> Your text goes here... </body> </html> Put the above in a file and save it with an extension htm or html. Now you have a web page with the text you want.


How do you build a website with HTML?

You can build a website by HTML using it's predefined tags. Head, Body, A, P etc are some of the tags that can be used.


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.


How many HTML tags should be used for a simple web pages?

2-3 tags including the main HTML, BODY and HEAD tag can be used. They can make a fairly simple web page.