25 lines
520 B
HTML
25 lines
520 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Document</title>
|
|
</head>
|
|
|
|
<body>
|
|
<a href="https://www.linkedin.com/learning/html5-grundkurs-2/uberschriftsebenen-richtig-zuweisen">LinkedIn Learning Überschriften</a>
|
|
|
|
<header>
|
|
<h1>Überschrift</h1>
|
|
</header>
|
|
|
|
<section>
|
|
<header>
|
|
<h1>HTML5</h1>
|
|
</header>
|
|
<p>Hier gibt es zahlreiche Informationen zu HTML5 ...</p>
|
|
<footer>Fussnote...</footer>
|
|
</section>
|
|
</body>
|
|
|
|
</html> |