bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/HTML/HTML Foundations
HTML•HTML Foundations

HTML - The Head Element

Concept visual

HTML - The Head Element

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

The HTML

<head> element is a container for the following elements: <title>, <style>, <meta>, <link>, <script>, and <base>.

Formula

The HTML < head > Element

The

<head> element is a container for metadata (data about data) and is placed between the <html> tag and the <body> tag. HTML metadata is data about the HTML document. Metadata is not displayed on the page. Metadata typically define the document title, character set, styles, scripts, and other meta information.

Formula

The HTML < title > Element

The

<title> element defines the title of the document.

Formula

The title must be text - only, and it is shown in the browser's title bar or in the page's tab.

The

<title> element is required in HTML documents! The content of a page title is very important for search engine optimization (SEO)! The page title is used by search engine algorithms to decide the order when listing pages in search results.

The

<title> element: defines a title in the browser toolbar provides a title for the page when it is added to favorites displays a title for the page in search engine-results So, try to make the title as accurate and meaningful as possible!

A simple HTML document:

Example

<!DOCTYPE html> <html> <head>

Formula

< title > A Meaningful Page

Title</title> </head> <body> The content of the document...... </body> </html>

Formula

The HTML < style > Element

The

<style> element is used to define style information for a single HTML page:

Example

<style>

body {background-color: powderblue;}
h1 {color: red;}
p {color: blue;}

</style>

Formula

The HTML < link > Element

The

<link> element defines the relationship between the current document and an external resource.

The

<link> tag is most often used to link to external style sheets:

Example

<link rel="stylesheet" href="mystyle.css">

Tip:

To learn all about CSS, visit our CSS Tutorial.

Formula

The HTML < meta > Element

The

<meta> element is typically used to specify the character set, page description, keywords, author of the document, and viewport settings. The metadata will not be displayed on the page, but is used by browsers (how to display content or reload page), by search engines (keywords), and other web services.

Examples

Define the character set used:

Formula

< meta charset ="UTF - 8">

Define keywords for search engines:

<meta name="keywords" content="HTML, CSS, JavaScript"> Define a description of your web page: <meta name="description" content="Free Web tutorials"> Define the author of a page: <meta name="author" content="John Doe">

Refresh document every 30 seconds:

Formula

< meta http - equiv ="refresh" content ="30">

Setting the viewport to make your website look good on all devices:

Formula

< meta name ="viewport" content ="width = device - width, initial - scale = 1.0">

Example of

<meta> tags:

Example

Formula

< meta charset ="UTF - 8">

<meta name="description" content="Free Web tutorials"> <meta name="keywords" content="HTML, CSS, JavaScript"> <meta name="author" content="John Doe">

Setting The Viewport

The viewport is the user's visible area of a web page. It varies with the device - it will be smaller on a mobile phone than on a computer screen.

You should include the following

<meta> element in all your web pages:

Formula

< meta name ="viewport" content ="width = device - width, initial - scale = 1.0">

This gives the browser instructions on how to control the page's dimensions and scaling. The width=device-width part sets the width of the page to follow the screen-width of the device (which will vary depending on the device).

Formula

The initial - scale = 1.0 part sets the initial zoom level when the page is first loaded by the browser.

Here is an example of a web page without the viewport meta tag, and the same web page with the viewport meta tag:

Tip:

If you are browsing this page with a phone or a tablet, you can click on the two links below to see the difference.

Without the viewport meta tag

Previous

HTML JavaScript

Next

HTML Responsive Web Design