-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocument.html
More file actions
94 lines (83 loc) · 3.12 KB
/
document.html
File metadata and controls
94 lines (83 loc) · 3.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="de-DE">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Ein barrierefreies Dokument - Firmenname</title>
<link
rel="stylesheet"
href="assets/css/style.css"
/>
</head>
<body>
<div role="firlefanz">
logo
<nav>
<ul class="nav nav-column">
<li><a href="#">Seite 1</a></li>
<li><a href="#">Seite 2</a></li>
<li><a href="#">Seite 3</a></li>
</ul>
</nav>
</div>
<div role="main">
<h1>Ein barrierefreies Dokument der <abbr title="National Aeronautic Space Agency" class="versal">Nasa</abbr></h1>
<article>
<h2>Formular-Komponente</h2>
<form action="" aria-live="assertive">
<fieldset>
<legend>Suche über alle Seiten</legend>
<label for="search">Sucheingabe</label>
<input
type="search"
name=""
id="search"
/>
<button tabindex="-1" type="submit">Suche starten</button>
</fieldset>
</form>
</article>
<article tabindex="1" aria-label="Abbildungen" aria-describedby="article-headline-1">
<h2 id="article-headline-1">Abbildungen</h2>
<figure>
<img
src="https://picsum.photos/id/64/200"
alt="Foto eines Mädchen mit Sonnenbrille."
title="Mädchen mit cooler Sonnenbrille und Blumenstrauß."
/>
<img
src="https://picsum.photos/id/65/200"
alt="Foto eines Mädchen im Abendlicht."
/>
<img
src="https://picsum.photos/id/66/200"
alt="Foto: Berg Tal Landschaft ..."
/>
<figcaption class="visually-hidden">
Mädchen mit cooler Sonnenbrille und Blumenstrauß.
</figcaption>
</figure>
</article>
<article lang="es">
<header>
<h2>Überschrift des Artikels</h2>
<p class="teaser">Lorem ipsum dolor sit amet.</p>
</header>
<p>
<span>Nicht semantischer Inhalt</span>Lorem ipsum dolor sit
amet, consectetur adipisicing elit. Ab id culpa corporis.
</p>
<h3>Unter-Überschrift</h3>
</article>
</div>
<footer>
<address>
© <time datetime="2024">2024</time> Firmenname,
<a href="mailto:">Michael</a>
</address>
</footer>
</body>
</html>