blob: 47e28a7c18091b7241e7876e2bd1f0dce7f7dab7 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Meine Hallo Welt</title>
<style type="text/css">
<!--
td {
padding: 12px;
}
-->
</style>
</head>
<body>
<table border="1" contenteditable="true">
<tr contenteditable="false">
<th>Montag</th>
<th>Dienstag</th>
<th>Mittwoch</th>
<th>Donnerstag</th>
<th>Freitag</th>
<th>Samstag</th>
</tr>
<tr>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
</tr>
<tr>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
</tr>
<tr>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
</tr>
<tr>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</td>
</tr>
</table>
</body>
</html>
|