-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 2.69 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
<!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>CSM | Home</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link rel="stylesheet" href="https://fonts.sandbox.google.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<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=Andika:ital,wght@0,400;0,500;0,600;1,100&display=swap" rel="stylesheet" />
<link href="css/csm.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/b318972c4d.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="logo-img">
<a href="index.html">
<img src="/images/csmlogosmall.png" alt="Community Science Museum's logo">
</a>
<a href="index.html">
<p>CSM</p>
</a>
</div>
<input type="checkbox" id="menu-checkbox">
<label for="menu-checkbox" class="hamburger-icon"><i class="fas fa-bars"></i></label>
<nav>
<a class="active" href="index.html">Home</a>
<a href="explore.html">Explore</a>
<a href="exhibition.html">Exhibition</a>
<a href="event.html">Special Events</a>
<a href="visit.html">Visit Us</a>
<a href="involve.html">Get Involved</a>
</nav>
</header>
<main class="index-main">
<section class="home-text">
<h1 class="home-h1">Community Science Center</h1>
<h2 class="home-h2">Explore Together</h2>
</section>
<div class="home-buttons">
<a href="explore.html" class="cta home-button explore-button">Explore</a>
<a href="exhibition.html" class="cta home-button exhibition-button">Exhibition</a>
<a href="event.html" class="cta home-button events-button">Events</a>
<a href="visit.html" class="cta home-button visit-button">Visit Us</a>
<a href="involve.html" class="cta home-button involve-button">Get involved</a>
</div>
</main>
<footer class="footer">
<a href="index.html">
<img src="/images/csmlogosmall.png" class="footer-logo" alt="Community Science Museum's logo">
</a>
<h3 class="footer-h3">Strandkaien 3, 5003 Bergen</h3>
<p>Hours <br> Monday: Closed</p>
<p>Tuesday: 10:00 - 16:00 <br> Wednesday: 10:00 - 16:00</p>
<p>Thursday: 10:00 - 19:00 <br> Friday: 10:00 - 19:00</p>
<p>Saturday: 9:00 - 16:00 <br> Sunday: 9:00 - 13:00</p>
</footer>
</body>
</html>