15 lines
260 B
HTML
15 lines
260 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Html5</title>
|
||
|
<meta charset="UTF-8">
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Title of level 1</h1>
|
||
|
<h2>Title of level 2</h2>
|
||
|
<h3>Title of level 3</h3>
|
||
|
<h4>Title of level 4</h4>
|
||
|
<h5>Title of level 5</h5>
|
||
|
<h6>Title of level 6</h6>
|
||
|
</body>
|
||
|
</html>
|