- index.html
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Headings and subheadings</title>
</head>
<body>
1 Headings
<p>Headings are one of the most important tools for structuring text.</p>
1.1 Usage guidelines
<p>Here are some guidelines for using headings in an HTML page.</p>
1.1.1 Use of h1
<p>It is not recommended that a single page contain multiple top-level headings.</p>
1.1.2 Use of h2-h6
<p>When using subheadings, it is not recommended to skip heading levels, i.e. h1 should be followed by h2 and only then h3.</p>
</body>
</html>
You have moved to another page
GoalsCompleted
0
- Wrap the text "1 Headings" in the
<h1>
tag. - Wrap the text "1.1 Usage guidelines" in the
<h2>
tag. - Wrap the text "1.1.1 Use of h1" and the text "1.1.2 Use of h2-h6" in the
<h3>
tags.