-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbasis.html
More file actions
73 lines (72 loc) · 1.96 KB
/
basis.html
File metadata and controls
73 lines (72 loc) · 1.96 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
<!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" />
<link rel="stylesheet" href="basis.css" />
<title>Document</title>
</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>
<!-- Variante A -->
<div class="basis-card">
<div class="basis-header">ID: 1</div>
<div><span>Name:</span> Max Mustermann</div>
<div><span>Email:</span> max@mail.de</div>
<div><span>Beruf:</span> Entwickler</div>
<div><span>Alter:</span> 28 Jahre alt</div>
</div>
<div class="basis-card">
<div class="basis-header">ID: 2</div>
<div><span>Name:</span> John Doe</div>
<div><span>Email:</span> john@mail.de</div>
<div><span>Beruf:</span> Designer</div>
<div><span>Alter:</span> 33 Jahre alt</div>
</div>
<div class="basis-card">
<div class="basis-header">ID: 3</div>
<div><span>Name:</span> Tim Tayler</div>
<div><span>Email:</span> tom@mail.de</div>
<div><span>Beruf:</span> Koch</div>
<div><span>Alter:</span> 42 Jahre alt</div>
</div>
</body>
</html>