Monday, 13 June 2016

HTML h1 tag


HTML: <h1> tag

This HTML tutorial explains how to use the HTML element called the <h1> tag with syntax and examples.

Description

The HTML <h1> tag defines the highest level or most important heading in the HTML document. This tag is also commonly referred to as the <h1> element.

Syntax

In HTML, the syntax for the <h1> tag is:
<body>
<h1>Heading 1 goes here</h1>
</body>

Attributes

In addition to the Global Attributes, the following is a list of attributes that are specific to the <h1> tag:
AttributeDescriptionHTML Compatibility
alignAlignment of the textDeprecated in HTML 4.01, Obsolete in HTML5, use CSS

Note

  • The HTML <h1> element is found within the <body> tag.
  • Headings can range from <h1> to <h6>. The most important heading is <h1> and the least important heading is <h6>.
  • The <h1> heading is the first heading in the document.
  • The <h1> heading is usually a large bolded font.
  • Do not use a <h1> tag simply to apply different formatting. <h1> tags are used to define heading levels, like in a Table of Contents.

Browser Compatibility

The <h1> tag has basic support with the following browsers:
  • Chrome
  • Android
  • Firefox (Gecko)
  • Firefox Mobile (Gecko)
  • Internet Explorer (IE)
  • IE Phone
  • Opera
  • Opera Mobile
  • Safari (WebKit)
  • Safari Mobile

Example

We will discuss the <h1> tag below, exploring examples of how to use the <h1> tag in HTML 5, HTML 4.01 Transitional, XHTML 1.0 Transitional, XHTML 1.0 Strict, and XHTML 1.1.

HTML 5 Document

If you created a new web page in HTML 5, your <h1> tag might look like this:
<!doctype html>
<html>

<head>
<meta charset="UTF-8">
<title>HTML 5 Example by www.techonthenet.com</title>
</head>

<body>
<h1>Heading 1</h1>
<p>This is the content that would appear under Heading 1.</p>
</body>
</html>
In this HTML 5 Document example, we have created the <h1> tag with the text "Heading 1".

HTML 4.01 Transitional Document

If you created a new web page in HTML 4.01 Transitional, your <h1> tag might look like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>HTML 4.01 Transitional Example by www.techonthenet.com</title>
</head>

<body>
<h1>Heading 1</h1>
<p>This is the content that would appear under Heading 1.</p>
</body>
</html>
In this HTML 4.01 Transitional Document example, we have created the <h1> tag with the text "Heading 1".

XHTML 1.0 Transitional Document

If you created a new web page in XHTML 1.0 Transitional, your <h1> tag might look like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>XHMTL 1.0 Transitional Example by www.techonthenet.com</title>
</head>

<body>
<h1>Heading 1</h1>
<p>This is the content that would appear under Heading 1.</p>
</body>
</html>
In this XHTML 1.0 Transitional Document example, we have created the <h1> tag with the text "Heading 1".

XHTML 1.0 Strict Document

If you created a new web page in XHTML 1.0 Strict, your <h1> tag might look like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>XHTML 1.0 Strict Example by www.techonthenet.com</title>
</head>

<body>
<h1>Heading 1</h1>
<p>This is the content that would appear under Heading 1.</p>
</body>
</html>
In this XHTML 1.0 Strict Document example, we have created the <h1> tag with the text "Heading 1".

XHTML 1.1 Document

If you created a new web page in XHTML 1.1, your <h1> tag might look like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>XHTML 1.1 Example by www.techonthenet.com</title>
</head>

<body>
<h1>Heading 1</h1>
<p>This is the content that would appear under Heading 1.</p>
</body>
</html>
In this XHTML 1.1 Document example, we have created the <h1> tag with the text "Heading 1".

No comments:

Post a Comment