forked from RobFenger/7vs7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
location.html
74 lines (68 loc) · 3.13 KB
/
location.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
<!doctype html>
<html>
<head>
<title>7vs7</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="icon" type="image/png" href="7V7-logo.png" sizes="16x16">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&family=Zen+Dots&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://kit.fontawesome.com/23ac1fdc5c.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="header-container">
<div class="menu-icon" onclick="toggleMenu()">
<div class="menu-line one"></div>
<div class="menu-line two"></div>
<div class="menu-line three"></div>
</div>
<div class="logo">
<a href="index.html">
<img alt="7vs7" src="7V7-logo.png">
</a>
</div>
<div class="nav-menu">
<a class="menu-item link" href="location.html">Locatie</a>
<a class="menu-item link" href="contact.html">Contact</a>
<div class="menu-item dropdown-link">Informatie
<div class="dropdown-container">
<a class="menu-item link" href="hoe-werkt-het.html">Hoe werkt het?</a>
<a class="menu-item link" href="voor-wie.html">Voor wie is het?</a>
<a class="menu-item link" href="regels.html">Regels</a>
<a class="menu-item link" href="kosten.html">Wat kost het?</a>
</div>
</div>
<a class="menu-item link menu-button" href="form.html">Meld je nu aan!</a>
</div>
</div>
</header>
<div class="page-wrapper">
<div class="spacer-sm"></div>
<div class="location-thb">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d24175.09560401777!2d4.60825065838448!3d52.3730039604012!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5ef305c3e0f63%3A0xb6f587a06e6e4083!2sTHB%20voetbal!5e0!3m2!1snl!2snl!4v1670762796857!5m2!1snl!2snl" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
<div class="location-info">
<h3>Adres</h3>
<p>Wagenweg 240B, 2012 NP Haarlem</p>
</div>
</div>
</div>
<div class="spacer-sm"></div>
<footer>
<div class="footer-container">
<img alt="7vs7" src="7V7-logo.png">
<div class="footer-menu-items">
<a class="menu-item link" href="location.html">Locatie</a>
<a class="menu-item link" href="contact.html">Contact</a>
<a class="menu-item link" href="hoe-werkt-het.html">Hoe werkt het?</a>
<a class="menu-item link" href="voor-wie.html">Voor wie is het?</a>
<a class="menu-item link" href="regels.html">Regels</a>
<a class="menu-item link" href="kosten.html">Wat kost het?</a>
</div>
</div>
</footer>
<script src="menu.js"></script>
</body>
</html>