-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
80 lines (73 loc) · 2.59 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
80
<!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" />
<script src="https://api.mapbox.com/mapbox-gl-js/v2.3.1/mapbox-gl.js"></script>
<link
href="https://api.mapbox.com/mapbox-gl-js/v2.3.1/mapbox-gl.css"
rel="stylesheet"
/>
<script src="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-directions/v4.1.0/mapbox-gl-directions.js"></script>
<link
rel="stylesheet"
href="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-directions/v4.1.0/mapbox-gl-directions.css"
type="text/css"
/>
<link rel="stylesheet" href="assets/css/uikit.min.css" />
<link rel="stylesheet" href="assets/css/uikit-rtl.css" />
<link rel="stylesheet" href="assets/style.css" />
<script src="assets/js/uikit.min.js"></script>
<script src="assets/js/uikit-icons.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap"
rel="stylesheet"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>Canta</title>
</head>
<body>
<header>
<!-- <h1 class="uk-heading-large">Canta</h1> -->
<!-- changed name to logo -->
<img src="Canta.png" alt="logo img" width="270" height="250" />
<h2 class="uk-container uk-container-small">
A medical assistance locator
</h2>
</header>
<section class="container">
<form id="search-btn" class="uk-search">
<input
id="searchInput"
class="uk-search-input"
id="search-bar"
type="search"
placeholder="enter location"
size="40"
/>
<button id="searchBtn" class="uk-button uk-button-default">
Search
</button>
</form>
</section>
<section>
<!-- MAP AREA -->
<div id="map"></div>
<!-- END OF MAP AREA -->
<ul id="search-result" class="uk-container"></ul>
<p uk-margin>
<a class="uk-button uk-button-default" href="./about.html">About us</a>
<a class="uk-button uk-button-default" href="./supportpage/support.html"
>Support</a
>
<a class="uk-button uk-button-default" href="moreinfo/moreinfo.html"
>Resources</a
>
</p>
</section>
</body>
<script src="assets/script.js"></script>
</html>