-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (49 loc) · 1.8 KB
/
index.html
File metadata and controls
54 lines (49 loc) · 1.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShoreSquad - Beach Cleanup Community</title>
<link rel="stylesheet" href="css/styles.css">
<meta name="description" content="Rally your crew, track weather, and join beach cleanups with ShoreSquad's interactive map app">
</head>
<body>
<header>
<nav>
<div class="logo">ShoreSquad</div>
<div class="nav-links">
<a href="#map">Find Cleanups</a>
<a href="#weather">Weather</a>
<a href="#join">Join Squad</a>
</div>
</nav>
</header>
<main>
<section id="hero">
<h1>Make Waves of Change</h1>
<p>Join the movement to keep our beaches clean</p>
</section>
<section id="map">
<h2>Next Beach Cleanup Location</h2>
<iframe
id="google-map"
width="100%"
height="450"
style="border:0"
loading="lazy"
allowfullscreen
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3988.6282448861127!2d103.9555739!3d1.381497!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31da3dd3da621b33%3A0x422e59c0eafa550c!2sChangi%20Beach%20Park!5e0!3m2!1sen!2s!4v1685750400000!5m2!1sen!2s"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</section>
<section id="weather">
<!-- Weather information will be populated by JavaScript -->
</section>
</main>
<footer>
<p>© 2025 ShoreSquad. All rights reserved.</p>
</footer>
<script src="js/config.js"></script>
<script src="js/app.js"></script>
</body>
</html>