programming-examples/html/_Basics/title.html

15 lines
260 B
HTML
Raw Normal View History

2019-11-15 12:59:38 +01:00
<!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>