-
Notifications
You must be signed in to change notification settings - Fork 0
/
falltechniken.html
117 lines (102 loc) · 2.93 KB
/
falltechniken.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
<!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:60px ;
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;
}
.uebungen{
background-color: rgb(218, 206, 213);
padding: 4px 80px;
width: 400px;
margin-left: 40px;
}
.video{
width: 350px;
height: 200px;
margin-left: 80px;
}
.mittig{
text-align: center;
margin-top: 60px;
}
</style>
</head>
<body>
<main>
<header>
<a href="ubungen.html" class="pfeil">☚</a>
<h1 class="ueberschrift">Falltechnik</h1>
</header>
<article>
<div class="flex">
<a href="uebersicht.html" class="button">sturz seitwärts</a>
<iframe class="video" src="https://www.youtube.com/embed/RCPJPFWQplY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="mittig">
<p>beschreibung</p>
<p>Nach dem Abschlagen wird der Kopf zur Seite abgewinkelt, die Beine in richtung Kopf gehoben und die Fallenergie mit dem druck des Abschlagarmes vomBoden zum direkten Aufstehen genutzt. </p>
</div>
<img src="img/bild4.jpg" width="250" height="150" class="schaubild">
</article>
<div style="clear:both"></div>
</main>
<!--
<div id="app"></div>
-->
<script type="module" src="/main.js"></script>
</body>
</html>