This commit is contained in:
Andy
2020-02-11 15:43:55 +01:00
parent f3c71e298a
commit 92a1470fc9
7 changed files with 102 additions and 34 deletions
+18 -12
View File
@@ -1,22 +1,28 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Semantic Tags</title>
<link rel="stylesheet" href="../css/code.css">
<link rel="stylesheet" href="../css/style.css">
</head>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Die HTML -HEADER Struktur in Webseiten">
<title>Der HEADER in der HTML Struktur</title>
<link rel="stylesheet" href="../css/code.css">
<link rel="stylesheet" href="../css/style.css">
</head>
<body>
<header>
<img src="../img/logo.svg" alt="Mein logo" title="Der Titel meines Bildes">
<nav role="navigation">
</nav>
</header>
<main>
<header>
<h1>HTML Semantische Tags</h1>
</header>
<pre class="line-numbers language-html">
<code class=" language-html">
&#60;abbr&#62; Abbreviation
<code class=" language-html">&#60;abbr&#62; Abbreviation
&#60;acronym&#62; Acronym
&#60;blockquote&#62; Long quotation
&#60;dfn&#62; Definition
@@ -40,11 +46,11 @@
&#60;kbd&#62; Text to be entered by the user
&#60;pre&#62; Pre-formatted text
&#60;q&#62; Short inline quotation
&#60;samp&#62; Sample output
</pre></code>
&#60;samp&#62; Sample output</code>
</pre>
</main>
<footer>
<a href="https://git.perin.work/andy/webdev">Download</a>
<a title="Link zu Download" href="https://git.perin.work/andy/webdev">Download</a>
</footer>
<script src="../js/code.js"></script>
</body>