-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaps.html
64 lines (63 loc) · 2.1 KB
/
maps.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
<!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>Maps - Atlantic Technological University</title>
<link rel="stylesheet" href="assets/CSS/style.css">
</head>
<body>
<header>
<nav>
<ul id="menu">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="did-you-know.html">Did you know?</a>
</li>
<li>
<a href="origins.html">Origins</a>
</li>
<li>
<a href="how-to-buy-wine.html">How to buy wine</a>
</li>
<li>
<a href="matching-wine-food.html">Matching wine & food</a>
</li>
<li>
<a href="maps.html" class="active">Maps</a>
</li>
</ul>
</nav>
</header>
<main class="maps-page">
<div class="map-heading">
<h1>Atlantic Technological University, Sligo</h1>
</div>
<iframe
width="600"
height="450"
style="border:0; display: block; margin: 0 auto;"
loading="lazy"
allowfullscreen
referrerpolicy="no-referrer-when-downgrade"
src="https://www.google.com/maps/embed/v1/place?key=AIzaSyAutdzhNGWKgrfuvC5U9ToxNKZcylqlUIY&q=Atlantic+Technological+University+Sligo+Ireland">
</iframe>
</main>
<footer>
<p>© Copyright 2021 Emanuel </p>
<ul class="social-network">
<li>
<a href="https://www.linkedin.com" target="_blank" rel="noopener" aria-label="Visit My LinkedIn page (opens in new tab)"><i class="fab fa-linkedin"></i></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener" aria-label="Visit My Twitter page (opens in new tab)"><i class="fab fa-twitter-square"></i></a>
</li>
</ul>
</footer>
<!-- font awsome script -->
<script src="https://kit.fontawesome.com/dd8a4455f1.js" crossorigin="anonymous"></script>
</body>
</html>