-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hebeltechnik.html
131 lines (112 loc) · 3.23 KB
/
Hebeltechnik.html
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jujuzu lernen in einem Monat - Übersicht</title>
<style>
.flex {
display: flex; place-items: flex-start;
}
/* Stil für das Layout */
main {
margin: 0 auto;
max-width: 800px;
border: 1px solid #111212;
padding:30px;
}
header {
margin-bottom: 100px;
text-align: center;
}
img {
margin: 0 10px;
}
/* Stil für den Button-Link */
.button {
display: inline-block;
padding: 17px 60px;
background-color: #f5e8f0;
color: #0a0909;
border-radius: 5px;
text-decoration: none;
margin-bottom:200px ;
border: 1px solid #111212;
}
.button:hover {
background-color: rgb(206, 198, 236);
}
img {
float: left;
margin-right: 10px; /* Fügt rechts einen Abstand hinzu, damit der Text um das Bild fließt */
}
#rechts{
float:right;
margin-top:190px ;
}
#links{
margin-top:200px ;
}
.pfeil{
margin-right: 800px;
font-size: 30px;
}
.pfeil:hover {
background-color: rgb(206, 198, 236);
}
.ueberschrift{
text-decoration: underline;
white-space: nowrap;
}
.uebungen{
background-color: rgb(218, 206, 213);
padding: 4px 80px;
width: 400px;
margin-left: 40px;
}
.video{
width: 300px;
height: 150px;
margin-left: 90px;
}
.mittig{
text-align: center;
margin-top: 60px;
}
.abstand{
margin-top: 190px;
}
.abstand2{
margin-top: 65px;
}
</style>
</head>
<body>
<main>
<header>
<a href="ubungen.html" class="pfeil">☚</a>
<h1 class="ueberschrift">Hebeltechnik</h1>
</header>
<article>
<div class="flex">
<div>
<div class="ueberschrift">Armhebel im stand</div>
<div class="ueberschrift abstand">Armhebel am Boden</div>
</div>
<div style="margin-left:100px">
<iframe width="350" height="150" src="https://www.youtube.com/embed/HSYDSNAd0Es" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<iframe class="abstand2" width="350" height="150" src="https://www.youtube.com/embed/tnvxmuz2Asg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="mittig">
</div>
</article>
<div style="clear:both"></div>
</main>
<!--
<div id="app"></div>
-->
<script type="module" src="/main.js"></script>
</body>
</html>