-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocation.html
76 lines (66 loc) · 2.65 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
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<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=Big+Shoulders+Display:wght@300;500;900&family=Outfit:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ=="
crossorigin=""/>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/global.css">
<link rel="stylesheet" href="./css/location/header.css">
<link rel="stylesheet" href="./css/location/main.css">
<link rel="stylesheet" href="./css/location/footer.css">
<title>Art gallery website</title>
</head>
<body>
<header class="header">
<a class="buttom-anchor" href="index.html">
<div class="buttom-arrow">
<img src="./assets/icon-arrow-left.svg" alt="white right arrow icon">
</div>
<div class="buttom title-s">Back to Home</div>
</a>
<div id="map">
</div>
</header>
<main class="main">
<h1 class="title-l">Our location</h1>
<div class="adress">
<div class="address-street">
<h2 class="title-s">99 King Street</h2>
<ul class="text-s">
<li>Newport</li>
<li>RI 02840</li>
<li>United States of America</li>
</ul>
</div>
<div class="address-reference">
<p class="text-s">Our newly opened gallery is located near the Edward King House on 99 King
Street, the Modern Art Gallery is free to all visitors and open seven days
a week from 8am to 9pm.</p>
</div>
</div>
</main>
<footer class="footer">
<div class="footer-logo">
<img src="./assets/logo-dark.svg" alt="">
</div>
<p class="text-m">The Modern Art Gallery is free to all visitors and open seven days a week
from 8am to 9pm. Find us at 99 King Street, Newport, USA.</p>
<div class="social-media">
<a href="#"><img src="./assets/icon-facebook.svg" alt=""></a>
<a href="#"><img src="./assets/icon-instagram.svg" alt=""></a>
<a href="#"><img src="./assets/icon-twitter.svg" alt=""></a>
</div>
</footer>
</body>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ=="
crossorigin=""></script>
<script src="./js/script.js"></script>
</html>