-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kontakt.html
136 lines (109 loc) · 2.54 KB
/
Kontakt.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
132
133
134
135
136
<!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="index.html">Home</a>
</div>
</div>
<div id="Bulk">
<div id="title">Kontakt</div>
<div id="text">Sie können uns erreichen über:<br>
Telefon: 117<br>
<br>
Email:[email protected]<br>
<br>
Sie kommen vorbei!
<br>
Musterstr. 1<br>
0001 Musterstadt<br>
Musterland
</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>