-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBilder.html
More file actions
73 lines (68 loc) · 2.24 KB
/
Copy pathBilder.html
File metadata and controls
73 lines (68 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en" class="main-bg">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bilder</title>
<link rel="stylesheet" href="css/main.css" />
<link
href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2/dist/tailwind.min.css"
rel="stylesheet"
/>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Homepage</a></li>
<li><a href="uebermich.html">Über mich</a></li>
<li><a href="Formular.html">Formular</a></li>
<li><strong>Bilder</strong></li>
<li><a href="Grids.html">Grids</a></li>
</ul>
</nav>
</header>
<main>
<h1 class="font-mono text-4xl color-white">Bilder</h1>
<h2 class="font-serif text-2xl color-white">Bild mit URL</h2>
<img
src="https://img.br.de/8c573791-038d-4438-8245-7c7c248ec478.jpeg"
title="Astronaut"
alt="Neil Armstrong auf dem Mond"
class="Bilder"
/>
<h2 class="font-serif text-2xl color-white">Bild mit lokalem Pfad</h2>
<img
src="assets/img/bg_planetary-society_apollo11-armstrong_uhd3840x2160.jpg"
alt="Apollo 11 Hintergrundbild"
class="Bilder"
/>
<h2 class="font-serif text-2xl color-white">Audio</h2>
<audio controls>
<source
src="https://www.w3schools.com/html/horse.mp3"
type="audio/mpeg"
/>
Dein Browser unterstützt kein Audio-Element.
</audio>
<h2 class="font-serif text-2xl color-white">Video</h2>
<video controls>
<source
src="assets/img/fading-stormtrooper.960x540.mp4"
type="video/mp4"
/>
Dein Browser unterstützt kein Video-Element.
</video>
<h2 class="font-serif text-2xl color-white">iframe</h2>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/UpqigplV_3I?si=euAc-37_3_mn0Vkq"
title="YouTube Video Player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
</main>
</body>
</html>