-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtiny.html
More file actions
50 lines (50 loc) · 1.12 KB
/
tiny.html
File metadata and controls
50 lines (50 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="tiny.css" />
</head>
<body>
<table class="basis-table">
<thead>
<tr>
<th>ID</th>
<th>Vorname</th>
<th>Nachname</th>
<th>Email</th>
<th>Beruf</th>
<th>Alter</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Max</td>
<td>Mustermann</td>
<td>max@mail.de</td>
<td>Entwickler</td>
<td>28</td>
</tr>
<tr class="active">
<td>2</td>
<td>John</td>
<td>Doe</td>
<td>john@mail.de</td>
<td>Designer</td>
<td>33</td>
</tr>
<tr>
<td>3</td>
<td>Tim</td>
<td>Taylor</td>
<td>tim@mail.de</td>
<td>Koch</td>
<td>42</td>
</tr>
</tbody>
</table>
</body>
</html>