Пыльца сосны Россия
Инструкция
Все нюансы сборки, переработки, заготовки и применения.
-- Купить пыльцу --

Html headers

Each web page has a title.

The very first document header is displayed in the browser tab

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Document's name</title>
</head>
<body>

</body>
</html>

All other headers in html are written as follows

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Document's name</title>
</head>
<body>
<h1>Document header</h1>
<h2>Document header</h2>
<h3>Document header</h3>
<h4>Document header</h4>
<h5>Document header</h5>
<h6>Document header</h6>
</body>
</html>

Example:

<h1>Document header</h1>

Document header

<h2>Document header</h2>

Document header

<h3>Document header</h3>

Document header

<h4>Document header</h4>

Document header

<h5>Document header</h5>

Document header

<h6>Document header</h6>

Document header

Paragraphs html < < < HTML basics > > > HTML List

Запись опубликована в рубрике Html basics. Добавьте в закладки постоянную ссылку.
А так же:

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *