68 lines
2.1 KiB
HTML
68 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<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/reset.css">
|
|
<link rel="stylesheet" href="../css/code.css">
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<div class="wrapper">
|
|
<a href="../index.html"><img src="../img/logo.svg" alt="Mein logo" title="Der Titel meines Bildes"></a>
|
|
<nav role="navigation">
|
|
<ul>
|
|
<li><a href="semantik.html">Semantik</a></li>
|
|
<li><a href="header.html">Head</a></li>
|
|
<li><a href="struktur.html">Struktur</a></li>
|
|
<li><a href="navigation.html">Navigation</a></li>
|
|
<li><a href="formulare.html">Formular</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="wrapper">
|
|
<h1>HTML Semantische Tags</h1>
|
|
<pre class="line-numbers language-html">
|
|
<code class=" language-html"><abbr> Abbreviation
|
|
<acronym> Acronym
|
|
<blockquote> Long quotation
|
|
<dfn> Definition
|
|
<address> Address for author(s) of the document
|
|
<cite> Citation
|
|
<code> Code reference
|
|
<tt> Teletype text
|
|
<div> Logical division
|
|
<span> Generic inline style container
|
|
<del> Deleted text
|
|
<ins> Inserted text
|
|
<em> Emphasis
|
|
<strong> Strong emphasis
|
|
<h1> First-level headline
|
|
<h2> Second-level headline
|
|
<h3> Third-level headline
|
|
<h4> Fourth-level headline
|
|
<h5> Fifth-level headline
|
|
<h6> Sixth-level headline
|
|
<hr> Thematic break
|
|
<kbd> Text to be entered by the user
|
|
<pre> Pre-formatted text
|
|
<q> Short inline quotation
|
|
<samp> Sample output</code>
|
|
</pre>
|
|
</main>
|
|
<footer>
|
|
<div class="wrapper">
|
|
<p><a title="Link zu Download" href="https://git.perin.work/andy/webdev">Download</a></p>
|
|
</div>
|
|
</footer>
|
|
<script src="../js/code.js"></script>
|
|
</body>
|
|
|
|
</html> |