Вы находитесь на странице: 1из 10

HTML Basics

HTML Introduction

Editors & Tools

HTML Elements

HTML Basic Tags

HTML Attributes

HTML Headings

HTML Formatting

HTML Links

HTML Images

HTML Lists

HTML Colors

HTML Comments

HTML Tables

HTML Scripts

HTML Templates

Layout Templates

HTML 5

HTML5 Introduction

Semantic Elements

Audio & Video

HTML References

Character Sets

ASCII

ISO-8859-1

ISO Language Codes


UTF-8 Encoding

HTML Entities

Keyboard Shortcuts

HTTP Methods

HTTP Status Messages

MIME-Types

Table of HTML Tags

XHTML

HTML Tags

Global Attributes

Event Attributes

<!-- ... -->

<!DOCTYPE>

<a>

<abbr>

<acronym>

<address>

<applet>

<area>

<article>

<aside>

<audio>

<b>

<base>

<basefont>

<bdi>

<bdo>

<big>
<blink>

<blockquote>

<body>

<br>

<button>

<canvas>

<caption>

<center>

<cite>

<code>

<col>

<colgroup>

<data>

<datalist>

<dd>

<del>

<details>

<dfn>

<dialog>

<dir>

<div>

<dl>

<dt>

<em>

<embed>

< eldset>

< gcaption>

< gure>

<font>
<footer>

<form>

<frame>

<frameset>

<h1>-<h6>

<head>

<header>

<hgroup>

<hr>

<html>

<i>

<iframe>

<img>

<input>

<ins>

<isindex>

<kbd>

<keygen>

<label>

<legend>

<li>

<link>

<main>

<map>

<mark>

<marquee>

<menu>

<menuitem>

<meta>
<meter>

<nav>

<nobr>

<noframes>

<noscript>

<object>

<ol>

<optgroup>

<option>

<output>

<p>

<param>

<plaintext>

<picture>

<pre>

<progress>

<q>

<rp>

<rt>

<ruby>

<s>

<samp>

<script>

<section>

<select>

<small>

<source>

<spacer>

<span>
<strike>

<strong>

<style>

<sub>

<summary>

<sup>

<svg>

<table>

<tbody>

<td>

<template>

<textarea>

<tfoot>

<th>

<thead>

<time>

<title>

<tr>

<track>

<tt>

<u>

<ul>

<var>

<video>

<wbr>

<xmp>
Experience PUBG Mobile on PC
HTML Headings

It is very important to have different types of headings to structure the content of the web page.
Headings help search engines to understand and index the structure of the web page.

Headings in an HTML document are written in heading tags. There are 6 levels of headings in
HTML. The <h1> - <h6> tags are used to mark headings according to their importance. The <h1>
tag stands for the most important heading of the web page and the <h6> stands for the least
important and smallest one.

Use only one <h1> tag on any web page. The tag should describe what your page is about
and contain keyword, as it helps to improve rankings in Google.

The hierarchy of headings in HTML look like this:

Example

<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>

Click here and try it yourself!

Result
Do not use heading tags for making the text bold or for increasing the text size. Remember,
that search engines use headings to structure the content.

Prev Next
HTML Formatting Tags HTML Elements HTML Layout HTML S
Templates

Welcome

Home
About Us
Privacy Policy

Our Books

HTML
CSS
Javascript
PHP

Our Tools
HTML Editor
CSS Maker
Base 64
Color Picker

Follow Us

Company © W3docs. All rights reserved.

Вам также может понравиться