This repository has been archived by the owner on Jul 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtabellen.html
90 lines (90 loc) · 2.18 KB
/
tabellen.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<html>
<head>
<title>Tabellen</title>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<style>
body { font-family: 'Ubuntu', sans-serif; margin-left: 1em; }
.center { text-align: center; }
ri { text-align: right; }
</style>
</head>
<body class="bg-light">
<u>
<h1>Tabellen</h1>
</u>
<p />
<h2>Aufgabe 3</h2>
<br />
<table>
<tr>
<th>Fahrer / Strecke</th>
<th>Australien</th>
<th>Brasilien</th>
<th>Malaysia</th>
</tr>
<tr>
<td><b>M. Schumacher</b></td>
<td>1.Platz</td>
<td>3.Platz</td>
<td>1.Platz</td>
</tr>
<tr>
<td><b>R. Barrichello</b></td>
<td>Unfall</td>
<td>Motorschaden</td>
<td>Hydraulikschaden</td>
</tr>
</table>
<br />
<h2>Aufgabe 4</h2>
<br />
<table>
<caption align="bottom">Tabelle: Ergebnisse der ersten drei Rennen der Formel1-Saison 2002</caption>
<tr>
<th>Fahrer / Strecke</th>
<th>Australien</th>
<th>Brasilien</th>
<th>Malaysia</th>
</tr>
<tr>
<td><b>M. Schumacher</b></td>
<td>1.Platz</td>
<td>3.Platz</td>
<td>1.Platz</td>
</tr>
<tr>
<td><b>R. Barrichello</b></td>
<td>Unfall</td>
<td>Motorschaden</td>
<td>Hydraulikschaden</td>
</tr>
</table>
<br />
<h2>Aufgabe 5</h2>
<br />
<table border="2px" width="75%" height="20px" cellpadding="10px" cellspacing="10px">
<caption align="bottom">Tabelle: Ergebnisse der ersten drei Rennen der Formel1-Saison 2002</caption>
<tr>
<th>Fahrer / Strecke</th>
<th>Australien</th>
<th>Brasilien</th>
<th>Malaysia</th>
</tr>
<tr>
<td><b>M. Schumacher</b></td>
<td>1.Platz</td>
<td>3.Platz</td>
<td>1.Platz</td>
</tr>
<tr>
<td><b>R. Barrichello</b></td>
<td>Unfall</td>
<td>Motorschaden</td>
<td>Hydraulikschaden</td>
</tr>
</table>
</body>
</html>