forked from RyanmFloersch/BowlCrawl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (73 loc) · 3.1 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
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<!-- Map Quest Place Search Style-->
<link type="text/css" rel="stylesheet" href="https://api.mqcdn.com/sdk/mapquest-js/v1.3.2/mapquest.css"/>
<link rel="stylesheet" href="./assets/css/style.css">
<title>Bowl Crawl</title>
</head>
<body>
<!--Header with logo and name -->
<header class="hero is-small">
<div class="hero-body">
<img src="./assets/bowl-crawl-low-resolution-logo-color-on-transparent-background.png" class="has-text-light has-text-centered is-size-3">
</div>
</header>
<!--Seach bar-->
<form class="box" autocomplete='off'>
<div class="field">
<!--Search instructions-->
<label class="label">Enter Your Starting Location Below:</label>
<div class="control autocomplete">
<!--Insert text here-->
<input id=myInput class="place-search-input" type="text" placeholder="Search Box">
<!--The search button-->
<button class="button is-small is-responsive searchBtn">Search</button>
</div>
</div>
</form>
<!-- Tile outline for business locations -->
<div class="tile is-ancestor">
<div id="options" class=" tile is-4 is-vertical is-parent">
<div id="option1" class="option tile is-child box">
<p id="placeName1" class="title">Location</p>
<p id="address1">Address:</p>
<p id="distance1">Distance:</p>
<p id="phone1">Phone:</p>
</div>
<div id="option2" class="option tile is-child box">
<p id="placeName2" class="title">Location</p>
<p id="address2">Address:</p>
<p id="distance2">Distance:</p>
<p id="phone2">Phone:</p>
</div>
<div id="option3" class="option tile is-child box">
<p id="placeName3" class="title">Location</p>
<p id="address3">Address:</p>
<p id="distance3">Distance:</p>
<p id="phone3">Phone:</p>
</div>
<div id="option4" class="option tile is-child box">
<p id="placeName4" class="title">Location</p>
<p id="address4">Address:</p>
<p id="distance4">Distance:</p>
<p id="phone4">Phone:</p>
</div>
</div>
<!--The Map Element-->
<div class="tile is-parent">
<div id="map" class="is-child"></div>
</div>
<!--Listed route time-->
<p id="time"><p>
</div>
<!-- Map Quest place search -->
<script src="https://api.mqcdn.com/sdk/mapquest-js/v1.3.2/mapquest.js"></script>
<script src="https://code.jquery.com/jquery-3.6.4.min.js" integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8=" crossorigin="anonymous"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>