-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (54 loc) · 2.54 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
<!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>Trip Tunes</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/css/foundation.min.css" integrity="sha256-ogmFxjqiTMnZhxCqVmcqTvjfe1Y/ec4WaRj/aQPvn+I=" crossorigin="anonymous">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="./assets/style.css">
<body>
<main class="grid-container">
<h1 class="cell">Welcome to Trip Tunes</h1>
<form id='location-form' class="cell">
<div class="grid-container">
<div class="grid-x grid-padding-x">
<div class="medium-6 cell">
<label>Start location
<input id="start" type="text" placeholder="Start location">
</label>
</div>
<div class="medium-6 cell">
<label>End location
<input id="end" type="text" placeholder="End location">
</label>
</div>
</div>
<button id="location-submit-btn" class="button medium-6 cell">Submit Route</button>
</div>
</form>
<form class="cell">
<div class="grid-container">
<div class="grid-x grid-padding-x">
<div id="playlist-form" class="cell">
</div>
</div>
</div>
</form>
</main>
<nav data-sticky data-stick-to="bottom" data-btm-anchor="content:bottom">
<ul class="menu expanded align-center sticky" data-sticky data-stick-to="bottom" data-btm-anchor="content:bottom">
<li><a href="./index.html"><i class="material-icons">home</i></a></li>
<li><a href="#top"><i class="material-icons">vertical_align_top</i></a></li>
</ul>
</nav>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/js/foundation.min.js" integrity="sha256-pRF3zifJRA9jXGv++b06qwtSqX1byFQOLjqa2PTEb2o=" crossorigin="anonymous"></script>
<script src="./assets/script.js"></script>
</body>
</html>