-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (72 loc) · 2.77 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Come join us at the Community Science Museum.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Community Science Museum</title>
<link href="css/styles.css" rel="stylesheet">
<link href="css/media.css" rel="stylesheet">
<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=Kanit:wght@500&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/b318972c4d.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div>
<a href="index.html"><img src="images/logo.png" class="logo" alt="Logo"></a>
</div>
<label for="hamburger-menu"><i class="fas fa-bars"></i></label>
<input type="checkbox" id="hamburger-menu">
<nav>
<ul>
<li><a class="expl" href="explore.html">EXPLORE</a></li>
<li><a class="expl" href="getinvolved.html">GET INVOLVED</a></li>
</ul>
</nav>
</header>
<main>
<div class="welcome">
<div>
<h1>Community Science Museum</h1>
</div>
<div>
<a href="visit.html" class="cta_visit">VISIT</a>
</div>
</div>
<div class="blue_cta">
<div>
<a href="exhibition.html" class="cta_exhibition">Exhibition Spaces</a>
</div>
<div>
<a href="events.html" class="cta_events">Special Events</a>
</div>
</div>
</main>
<footer>
<div class="ft-all">
<div class="col-ft">
<div>VISITING ADDRESS</div>
Community Science Museum
<br>
Oslo Street 338
<br>
0103 Oslo Norway
<br>
</div>
<div id="ver_line"></div>
<div class="social_media">
<strong>FOLLOW US</strong>
<br>
<a href="https://www.facebook.com/"><i class="fa-brands fa-square-facebook"></i>Facebook</a>
<br>
<a href="https://twitter.com/?lang=en"><i class="fa-brands fa-square-twitter"></i>Twitter</a>
<br>
<a href="https://www.instagram.com/"><i class="fa-brands fa-square-instagram"></i>Instagram</a>
</div>
</div>
<br>
<div class="copyright">Copyright ©</div>
</footer>
</body>
</html>