-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.html
More file actions
72 lines (52 loc) · 1.94 KB
/
api.html
File metadata and controls
72 lines (52 loc) · 1.94 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Thomas Schöngaßner">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="45">
<meta http-equiv="x-ua-compatible" content="IE=edge" />
<title>Fancy Website</title>
<link rel="stylesheet" href="./styles/index.css">
<link rel="icon" href="./images/favicon.ico.png" type="image">
</head>
<body>
<header class="top-bar">
<a>
Nur das Beste vom Wetter!
</a>
<div id="menuLinks">
<a href="index.html">Home</a>
<a href="forecast.html">Wettervorhersage</a>
<a href="klickzaehler.html">Klickzähler</a>
<a href="climate.html">Klima</a>
<a href="api.html">API</a>
</div>
<a class="menu-button"">
<span class="fa">☰</span>
</a>
</header>
<section class="main">
<h1> Daten von einer API herunterladen </h1>
<h2>Wird jetzt erstmal etwas anderes</h2>
<div class="paragraph">
<dl>
<dt>Kaffee</dt>
<dd>- Espresso</dd>
<dd>- Capuchino</dd>
<dd>- Melange</dd>
<dt>Tee</dt>
<dd>- Grüntee</dd>
<dd>- Schwarztee</dd>
<dd>- Früchtetee</dd>
</dl>
</div>
<button class="up-to-top-button" onclick="topFunction()" title="Zurück zum Anfang"><span>↑</span></button>
</section>
<footer>
<p id="author"></p>
</footer>
<script src="js/index.js"></script>
</body>
</html>