forked from monstermaria/info-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (66 loc) · 2.16 KB
/
index.html
File metadata and controls
67 lines (66 loc) · 2.16 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8" />
<meta name="description" content="Info-app" />
<meta name="author" content="Grit Angels" />
<title>Info-app</title>
<link href="style.css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""
/>
<link
href="https://fonts.googleapis.com/css?family=Kalam&display=swap"
rel="stylesheet"
/>
<script
src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""
></script>
<script src="app.js" defer></script>
<script src="jquery-3.4.1.js"></script>
</head>
<body>
<!-- Title -->
<div class="row">
<h1 class="title">INFO APP</h1>
</div>
<!-- Select container -->
<div class="row select-city">
<select id="city">
<option value="malmo">Select city</option>
<option value="london">London</option>
<option value="paris">Paris</option>
<option value="copenhagen">Copenhagen</option>
<option value="stockholm">Stockholm</option>
</select>
<button type="submit" id="search-button" value="search">SEARCH</button>
</div>
<!-- Wrapper for main containers -->
<div class="wrapper">
<!-- Info container -->
<div class="column">
<div class="row">
<div class="info" id="info" style="text-align: center">
<p>Welcome on Grit Angels INFO APP!</p>
<p>Choose the city and enjoy your ride!</p>
</div>
</div>
</div>
<!-- Weather container -->
<div class="column">
<div class="row" id="openweathermap-widget-15"></div>
</div>
<!-- Map container -->
<div class="column">
<div class="map" id="map"></div>
</div>
</div>
<!-- End of wrapper for main containers -->
</body>
</html>