learnyouhtml
Version:
Learn you how to create your first web-page
23 lines (19 loc) • 384 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>Headings</title>
</head>
<body>
<h1>Heading elements</h1>
<h2>Summary</h2>
<p>Some text here...</p>
<h2>Examples</h2>
<h3>Example 1</h3>
<p>Some text here...</p>
<h3>Example 2</h3>
<p>Some text here...</p>
<h2>See also</h2>
<p>Some text here...</p>
</body>
</html>