-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (51 loc) · 1.79 KB
/
Copy pathindex.html
File metadata and controls
64 lines (51 loc) · 1.79 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
<!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 href="https://fonts.googleapis.com/css?family=Kalam&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<script src="jquery-3.4.1.js"></script>
</head>
<body>
<center>
<span>
<h1 class="titel">INFO APP</h1>
<select id="city">
<option value="malmo">Please select</option>
<option value="london">London</option>
<option value="paris">Paris</option>
<option value="copenhagen">Copenhagen</option>
<option value="stockholm">Stockholm</option>
</select>
<input type="button" id="search-button" value="search">
<br>
<br>
</span>
<br>
<div class="container">
<div class="row">
<div class="column">
<div class="info" id="info">Welcome on Grit Angels INFO APP! <br>Choose the city and enjoy your ride!</div>
</div>
<div class="column">
<div class="infoWeather" id="openweathermap-widget-5"></div>
</div>
<div class="column">
<div class="mapid" id="mapid"></div>
</div>
</div>
</div>
</center>
<script src="app.js"></script>
</body>
</html>