-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
61 lines (54 loc) · 1.21 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<title>Contact</title>
</head>
<style>
body
{
font-size: 150%;
color: aliceblue;
background-color: #333;
}
.navbar
{
overflow: hidden;
background-color: #333;
}
.navbar a
{
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
.navbar a.right
{
float: right;
}
.navbar a:hover
{
background-color: #ddd;
color: black;
}
</style>
<body>
<div class="navbar">
<a href="index.html">Home</a>
<a href="info.html">Info</a>
<a href="muziek.html">Muziek</a>
<a href="websites.html">Websites</a>
<a href="contact.html" class="right">Contact</a>
</div>
<div id="Muziek">
<h1>Email</h1>
<p>[email protected]</p>
</div>
<div id="Telefoon">
<h1>Telefoon.</h1>
<p>-0489986086</p>
</div>
</body>
</html>