-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaps.html
54 lines (41 loc) · 1.84 KB
/
maps.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
<!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="./assets/maps/maps.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css" />
<title>Find Your Gym</title>
</head>
</head>
<nav class="hero-head navbar">
<div class="container is-flex">
<h1 class="title column is-size-5-mobile is-responsive mt-3"><span class="has-text-primary">FIT </span>Resolution</h1>
<ul class="nav-btn">
<li class="home mt-5 mr-4 button is-rounded is-small has-text-grey is-responsive"><a href="index.html">HOME</a></li>
</ul>
</div>
</nav>
<body class="hero is-info is-fullheight is-responsive">
<section class="main-section hero-body">
<div class="control">
<input type="text" placeholder="Enter your city" id="city" class="is-success input mb-2"></input>
<button id="citySearch" class="button is-fullwidth is-success is-focused mb-2">Search</button>
<div class="container is-responsive">
<div id="map"></div>
</div>
</div>
</section>
<footer class="hero-foot">
<div class="content has-text-right">
<a href="https://github.com/JonJon50/Fit-Resolution">
<i class="button is-small fa-brands fa-github is-primary is-responsive"><span class="logo">Github</span></i>
</a>
</div>
</footer>
<script src="./assets/maps/maps.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCOYW44XORsf-nBZKXvYwZ8VPxDIgq8X7w&libraries=places&v=weekly"async></script>
<script src="https://kit.fontawesome.com/b754e15a00.js" crossorigin="anonymous"></script>
</body>
</html>