-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
64 lines (64 loc) · 2.02 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Static Template</title>
</head>
<body>
<h1>Übung - HTML</h1>
<h2>Hallo Wetter-App</h2>
<h3>Meine Wetterdaten auf einen Blick</h3>
<img
src="https://images.vexels.com/media/users/3/145138/isolated/lists/1de68bf333344dc5a6efca43807cfc6d-sonne-kleine-linie-strahlt-symbol.png"
/>
<p>Willkommen beim Wetterdienst! Wenn du mehr...</p>
<ol>
<li>Trage den <i>Namen der Stadt</i> in das Eingabefeld...</li>
<li>Wähle aus, <u>welche</u> Daten...</li>
<li>Wähle eine <b>Farbe</b> (optional)</li>
</ol>
<p>
... besuche folgende Seite:
<a href="https://de.wikipedia.org/wiki/Liste_der_Millionenst%C3%A4dte"
>Liste der Millionenstädte auf Wikip...</a
>
</p>
<form>
<label for="fullname">Name:</label>
<input name="fullname" /><br />
<label for="unit">Einheit:</label>
<input name="unit" type="radio">Fahrenheit</input>
<input name="unit" type="radio">Celsius</input><br />
<label for="localtime">Ortszeit:</label>
<input name="localtime" type="checkbox" /><br />
<label for="color">Farbe:</label>
<select name="color">
<option value="red">rot</option>
<option value="blue">blau</option>
<option value="green">grün</option>
</select><br />
<button type="reset">Reset</button>
<button type="submit">Submit</button>
</form>
<hr />
<table border="1">
<tr>
<th>Stadt</td>
<th>Temperatur</td>
<th>Uhrzeit</td>
</tr>
<tr>
<td>Berlin</td>
<td>20 C</td>
<td>12:00 Uhr</td>
</tr>
<tr>
<td>London</td>
<td>15 F</td>
<td>11:00 Uhr</td>
</tr>
</table>
</body>
</html>