18 lines
431 B
HTML
18 lines
431 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Heading</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>1. Überschrift</h1>
|
|
<!-- Pro Website nur eine Überschrift 1. Ordnung-->
|
|
<h2>2. Überschrift</h2>
|
|
<h3>3. Überschrift</h3>
|
|
<h4>4. Überschrift</h4>
|
|
<h5>5. Überschrift</h5>
|
|
<h6>6. Überschrift</h6>
|
|
</body>
|
|
</html> |