index page
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
<!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/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">
|
||||
</header>
|
||||
|
||||
<main role="main">
|
||||
<h1>Der HEADER in der HTML Struktur</h1>
|
||||
<article>
|
||||
<h2>Was gehört in den Kopf der HTML-Datei?</h2>
|
||||
<ul>
|
||||
<li>Benutzte Sprache </li>
|
||||
<li>Metainfoirmationen</li>
|
||||
<li>Title</li>
|
||||
<li>CSS</li>
|
||||
<li>Favicon</li>
|
||||
</ul>
|
||||
|
||||
<pre class="line-numbers language-html">
|
||||
<code class="language-html"><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">
|
||||
<meta name="robots" content="index,follow">
|
||||
<meta name="author" content="Mein Name">
|
||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="../css/style.css">
|
||||
<title>Der HEADER in der HTML Struktur</title>
|
||||
</head>
|
||||
</code>
|
||||
</pre>
|
||||
</article>
|
||||
|
||||
<aside>
|
||||
<h2>Artikel 2</h2>
|
||||
<p>Diese Seite enthält zunächst die Struktur und wenig Inhalt.<br>
|
||||
Das <strong>Bild</strong> erhält ein <strong>title</strong> und ein <strong>alt Attribut</strong>. Die
|
||||
<strong>Links</strong> erhalten ein <strong>title Attribut</strong>.
|
||||
</p>
|
||||
</aside>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<a href="https://git.perin.work/andy/webdev">Download</a>
|
||||
</footer>
|
||||
<script src="../js/code.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
+42
-42
@@ -2,51 +2,51 @@
|
||||
<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">
|
||||
<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>
|
||||
|
||||
<body>
|
||||
<main>
|
||||
<header>
|
||||
<h1>HTML Semantische Tags</h1>
|
||||
</header>
|
||||
<pre class=" 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
|
||||
</pre></code>
|
||||
</main>
|
||||
<footer>
|
||||
<a href="https://git.perin.work/andy/webdev">Download</a>
|
||||
</footer>
|
||||
<script src="../js/code.js"></script>
|
||||
<main>
|
||||
<header>
|
||||
<h1>HTML Semantische Tags</h1>
|
||||
</header>
|
||||
<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
|
||||
</pre></code>
|
||||
</main>
|
||||
<footer>
|
||||
<a href="https://git.perin.work/andy/webdev">Download</a>
|
||||
</footer>
|
||||
<script src="../js/code.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
+63
-63
@@ -2,75 +2,75 @@
|
||||
<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 Struktur in Webseiten">
|
||||
<title>HTML Struktur</title>
|
||||
<link rel="stylesheet" href="../css/code.css">
|
||||
<link rel="stylesheet" href="../css/style.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Die HTML Struktur in Webseiten">
|
||||
<title>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">
|
||||
<ul>
|
||||
<li><a title="Zur Startseite" href="#link1">Home</a></li>
|
||||
<li><a title="Unsere News" href="#link2">Aktuell</a></li>
|
||||
<li><a title="Alle Produkte auf einen Blick" href="link3">Produkte</a></li>
|
||||
<li><a title="Dienstleistungen" href="#link4">Service</a></li>
|
||||
<li><a title="Hier sind wir" href="#link5">Kontakt</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<header>
|
||||
<img src="../img/logo.svg" alt="Mein logo" title="Der Titel meines Bildes">
|
||||
<nav role="navigation">
|
||||
<ul>
|
||||
<li><a title="Zur Startseite" href="#link1">Home</a></li>
|
||||
<li><a title="Unsere News" href="#link2">Aktuell</a></li>
|
||||
<li><a title="Alle Produkte auf einen Blick" href="link3">Produkte</a></li>
|
||||
<li><a title="Dienstleistungen" href="#link4">Service</a></li>
|
||||
<li><a title="Hier sind wir" href="#link5">Kontakt</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main role="main">
|
||||
<h1>HTML5 Struktur einer Webseite</h1>
|
||||
<article>
|
||||
<h2>Artikel 1</h2>
|
||||
<pre class="language-html">
|
||||
<code class="language-html">
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>HTML Struktur</title>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
<ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<h1>Html Struktur einer Webseite</h1>
|
||||
<article>
|
||||
<h2>Artikel 1</h1>
|
||||
</article>
|
||||
<aside>
|
||||
<h2>Artikel 2</h2>
|
||||
</aside>
|
||||
</main>
|
||||
<footer>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
</code>
|
||||
</pre>
|
||||
</article>
|
||||
<main role="main">
|
||||
<h1>HTML5 Struktur einer Webseite</h1>
|
||||
<article>
|
||||
<h2>Artikel 1</h2>
|
||||
<pre class="line-numbers language-html">
|
||||
<code class="language-html"><!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>HTML Struktur</title>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
|
||||
<aside>
|
||||
<h2>Artikel 2</h2>
|
||||
<p>Diese Seite enthält zunächst die Struktur und wenig Inhalt.<br>
|
||||
Das <strong>Bild</strong> erhält ein <strong>title</strong> und ein <strong>alt Attribut</strong>. Die <strong>Links</strong> erhalten ein <strong>title Attribut</strong>.
|
||||
</p>
|
||||
</aside>
|
||||
</main>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<h1>Html Struktur einer Webseite</h1>
|
||||
<article>
|
||||
<h2>Artikel 1</h1>
|
||||
</article>
|
||||
<aside>
|
||||
<h2>Artikel 2</h2>
|
||||
</aside>
|
||||
</main>
|
||||
<footer>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
</code>
|
||||
</pre>
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<a href="https://git.perin.work/andy/webdev">Download</a>
|
||||
</footer>
|
||||
<script src="../js/code.js"></script>
|
||||
<aside>
|
||||
<h2>Artikel 2</h2>
|
||||
<p>Diese Seite enthält zunächst die Struktur und wenig Inhalt.<br>
|
||||
Das <strong>Bild</strong> erhält ein <strong>title</strong> und ein <strong>alt Attribut</strong>. Die
|
||||
<strong>Links</strong> erhalten ein <strong>title Attribut</strong>.
|
||||
</p>
|
||||
</aside>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<a href="https://git.perin.work/andy/webdev">Download</a>
|
||||
</footer>
|
||||
<script src="../js/code.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user