-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (54 loc) · 2.24 KB
/
index.html
File metadata and controls
60 lines (54 loc) · 2.24 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
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hack4Homeless</title>
<link rel="stylesheet" href="stylesheet.css">
<script src="https://karolmfg.github.io/Hack4Homeless/scripts/script.js" defer></script>
</head>
<body>
<header>
<h1 class="logo">
<img src="2669369.png" alt="Hack4Homeless Logo" style="height: 50px; vertical-align: middle; margin-right: 10px;">
Hack4Homeless
</h1>
<nav>
<ul>
<li><a href="https://karolmfg.github.io/Hack4Homeless/info">General Information</a></li>
<li><a href="https://karolmfg.github.io/Hack4Homeless/edu">Educational Resources</a></li>
<li><a href="#map">Community Outreach Map</a></li>
<li><a href="https://karolmfg.github.io/Hack4Homeless/apply">Add Shelters</a></li>
</ul>
</nav>
</header>
<main>
<section id="map">
<h2>Community Outreach Map</h2>
<div id="map" style="height: 500px; width: 100%;"></div>
</section>
<section id="directions">
<h2>Find Directions to a Shelter</h2>
<label for="start">Start:</label>
<select id="start">
<option value="current">Use My Location</option>
<option value="1600 Pennsylvania Ave NW, Washington, DC">White House</option>
<option value="600 Massachusetts Ave NW, Washington, DC">Bus Station</option>
<option value="Union Station, Washington, DC">Union Station</option>
</select>
<label for="end">Select a Shelter:</label>
<select id="end"></select>
<label for="travel-mode">Travel Mode:</label>
<select id="travel-mode">
<option value="WALKING">Walking</option>
<option value="DRIVING">Driving</option>
<option value="BICYCLING">Bicycling</option>
<option value="TRANSIT">Public Transport</option>
</select>
<button id="get-directions">Get Directions</button>
<div id="directions-panel" style="margin-top: 20px; background: #fff; padding: 10px; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);"></div>
</section>
</main>
<script src="https://karolmfg.github.io/Hack4Homeless/scripts/maps.js" defer></script>
</body>
</html>