-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (104 loc) · 2.72 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Schulaus Lustig</title>
</head>
<body>
<div id="top">
<div id="name">
Schulhaus Lustig
</div>
<div id="navigation">
<a href="bewerben.html">Bewerben</a>
<a href="über-uns.html">über Uns</a>
<a href="Kontakt.html">Kontakt</a>
</div>
</div>
<div id="Bulk">
<div id="title">News</div>
<div id="text">Die Erföffnung vom Schulhaus Lustig ist in vollem gange.
Gestern (Dann wann heute gestern war.) wurde die Turnhalle eingeweit viele tausende Gäste waren da.<br>
Es gab Kaffe und Kuchen, Schokolade und Erdbeeren und noch vieles mehr.<br>
Doch es gab auch nicht so tolle Erlebnisse. Als ein 10 Jähriges Kind am Spielplatz auf der Reckstange spielte,<br>
Ist es von der Reckstange gefallen. Schnell war der Krankenwagen da und nachher kam sogar die Rega.<br>
Doch wir haben gute Nachrichten, dem Kind geht es gut.</div>
<div id="massage">Alle Informationen sind frei erfunden.</div>
</div>
<div id="footer">
<div id="copyright">Copyright | Schulhaus Lustig</div>
<div id="fnavigation">
<a href="impressum.html">Impressum</a>
<a href="datenschutz.html">Datenschutz</a>
</div>
</div>
</body>
</html>
<style>
#top {
background-image: url(background.png);
}
#name {
text-align: center;
font-family: fantasy;
padding-top: 100px;
font-size: xxx-large;
padding-bottom: 150px;
font-weight: bolder;
}
#navigation a {
display: inline-block;
font-size: x-large;
color: rgb(30, 255, 0);
margin-left: 300px;
margin-top: -200px;
font-family: fantasy;
margin-bottom: 140px;
}
#navigation a:hover {
color: rgb(255, 0, 221);
}
#Bulk {
font-family: Arial, Helvetica, sans-serif;
}
#title {
text-align: center;
font-size: xxx-large;
margin-bottom: 15px;
margin-top: 40px;
}
#text {
font-size: x-large;
text-align: center;
margin-bottom: 60px;
margin-top: 60px;
}
#massage {
margin-top: 50px;
color: rgb(146, 143, 143);
margin-bottom:20px;
}
#footer {
background-image: url(footer.png);
padding: 100px;
}
#fnavigation a {
margin-left: 345px;
color: rgb(116, 116, 116);
font-family: Arial, Helvetica, sans-serif;
font-size: larger;
display: inline-block;
}
#fnavigation a:hover {
color:black;
}
#copyright {
color: rgb(116, 112, 112);
font-family: Arial, Helvetica, sans-serif;
font-size: x-large;
text-align: center;
margin-bottom: 30px;
}
</style>