-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.95 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
<!DOCTYPE html>
<head>
<title>QTP (Quick Trip Planner)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/icomoon/style.css" type="text/css">
<link rel="stylesheet" href="css/reset.css" type="text/css">
<link rel="stylesheet" href="css/main.css" type="text/css">
<link rel="stylesheet" href="css/form.css" type="text/css">
<link rel="stylesheet" href="css/results.css" type="text/css">
<link rel="stylesheet" href="css/autocomplete.css" type="text/css">
</head>
<body>
<header class="qtp-header">
<h1 class="qtp-header__text">Quick Trip Planner</h1>
</header>
<div id="qtp-container">
<div class="qtp-options">
<select class="qtp-options__select">
<option value="DRIVING" selected>DRIVE</option>
<option value="WALKING">WALK</option>
<option value="BICYCLING">BIKE</option>
</select>
<button class="qtp-back-button qtp-back-button--disabled" disabled>BACK</button>
</div>
<form id="qtp-form" class="qtp-form">
<label for="qtp-start-point" class="qtp-form__label">From:</label>
<input type="text" id="qtp-start-point" class="qtp-form__input"
placeholder="Enter starting point" required autocomplete="off">
<hr class="qtp-form__hr" role="presentation">
<label for="qtp-destination-point" class="qtp-form__label">To:</label>
<input type="text" id="qtp-destination-point" class="qtp-form__input"
placeholder="Enter destination point" required autocomplete="off">
<hr class="qtp-form__hr" role="presentation">
<button class="qtp-submit-button" type="submit">Get Trip</button>
</form>
<div class="qtp-results qtp-results--hidden"></div>
</div>
<footer class="qtp-footer">
<span class="qtp-footer__info">
App created by: <a class="qtp-footer__link" href="https://github.com/tyricec">Tyrice Clark</a>
</span>
</footer>
<script src="/qtp/dist/main.js"></script>
</body>