-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (80 loc) · 4.11 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ARU HiPPS Town</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> <link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<meta name="description" content="">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="icon.png">
<!--link rel="manifest" href="site.webmanifest"> -->
<meta name="theme-color" content="#fafafa">
</head>
<body>
<header id="header">
<div class="navbar">
<a href="index.html"><img src="../img/heron.png" alt="ARULOGO" width="20%"></a>
<h1>ARU HiPPS Town</h1>
<div class="navbar-links">
<!-- Your navigation links go here -->
<a href="index.html">Home</a>
<a href="projects.html">About the projects</a>
<!-- Add more links as needed -->
</div>
<span class="hamburger-menu material-symbols-outlined" onclick="toggleMenu()">menu</span>
</div>
</header>
<div class="welcome"><h2> Welcome to ARU HiPPS Town! <br>Scroll down the map and click on the buildings to discover what we have.</h2></div>
<div class="town-map">
<!-- Building icons as clickable links -->
<a href="#" class="icon" onclick="showGallery('hospital')">
<img src="img/hospital.png" alt="Hospital">
</a>
<a href="#" class="icon" onclick="showGallery('school')">
<img src="img/school.png" alt="School">
</a>
<a href="#" class="icon" onclick="showGallery('church')">
<img src="img/church.png" alt="church">
</a>
<a href="#" class="icon" onclick="showGallery('government')">
<img src="img/government.png" alt="government">
</a>
<a href="#" class="icon" onclick="showGallery('library')">
<img src="img/library.png" alt="Library">
<a href="#" class="icon" onclick="showGallery('museum')">
<img src="img/museum.png" alt="museum">
<a href="#" class="icon" onclick="showGallery('fun')">
<img src="img/fun.png" alt="fun">
</a>
</a>
</a>
</div>
<!-- Modal for image gallery -->
<div id="gallery-modal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeGallery()">×</span>
<div id="carousel" class="carousel">
<div id="image-gallery" class="image-gallery-container">
<!-- Images will be loaded dynamically here -->
</div>
</div>
</div>
</div>
<div class="further"><p> A shy building is hiding or closed? Just refresh the town.<br> Do you want to know more <a href="projects.html">about the projects?</a></p></div>
<footer>
<!-- Footer content goes here -->
<p> Projects from the Research Communications class at Anglia Ruskin Univeristy. <br> Code MIT Licence. ©Dr Andrea Kocsis 2024. Content: all rights reserved. Icons ©Flaticon.</p>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>