-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (61 loc) · 2.03 KB
/
index.html
File metadata and controls
76 lines (61 loc) · 2.03 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
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="de">
<head>
<!-- UTF-8 -->
<meta charset="utf-8"/>
<!-- Description -->
<meta name="description" content="...">
<!-- Keywords -->
<meta name="keywords" content="..., ..., ...">
<!-- Author -->
<meta name="author" content="... ...">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Icon -->
<!-- <link rel="icon" type="image/svg+xml" href="assets/images/sun.svg" sizes="any"> -->
<link rel="icon" type="image/svg+xml" href="assets/images/favicon.ico">
<!-- Leafletjs.com Styles -->
<link rel="stylesheet" href="node_modules/leaflet/dist/leaflet.css">
<!-- Leafletjs.com JS -->
<script src="node_modules/leaflet/dist/leaflet.js"></script>
<!-- My Styles -->
<link rel="stylesheet" href="assets/css/styles.css">
<!-- Title -->
<title>❤🧡💛💚💙💜🤎🖤🤍 Fetch JSON API Data App</title>
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="col">
<h1>Fetch JSON Data from API and map lat lon</h1>
<h2>Where ist ISS now ?</h2>
</div>
</div>
</div>
</header>
<main>
<div class="container">
<div class="row">
<div class="col">
<h4>Coordinates from ISS now are:</h4>
<p>The latitude: <b><span id="lat"></span>°</b></p>
<p>The longitude: <b><span id="lon"></span>°</b></p>
<div id="issMap">
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="container">
<div class="row">
<div class="col">
<p> © egosanto.de 2022 </p>
</div>
</div>
</div>
</footer>
<script src="assets/js/index.js"></script>
</body>
</html>