-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
55 lines (53 loc) · 1.23 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Index page</title>
<link rel="stylesheet" href="css/main.css">
<script src="js/main.js"></script>
</head>
<body>
little text for testing propourse
<table id="table_one">
<tr>
<th>First</th>
<th>Second</th>
<th colspan="2">Third & Fourth</th>
<th colspan="2">Fifth & Sixth</th>
</tr>
<tr>
<td>Little bit more content [1:1]</td>
<td>And another one cell [1:2]</td>
<td>Hello, world [1:3]</td>
<td>Another [1:4]</td>
<td>Wow, wow [1:5]</td>
<td>Last in the row [1:6]</td>
</tr>
<tr>
<td>Content of this cell [2:1]</td>
<td>It is some cool text [2:2]</td>
<td>How how how [2:3]</td>
<td>Oh, yea [2:4]</td>
<td>let's play [2:5]</td>
<td>So, it is last in this table [2:6]</td>
</tr>
</table>
<br>
<table id="table_two">
<tr>
<th>First one</th>
<th>Second one</th>
<th>Third one</th>
</tr>
<tr>
<td>So, let's talk about it [1:1]</td>
<td>Short content [1:2]</td>
<td>Empty [1:3]</td>
</tr>
<tr>
<td>It is littel bit more text in this cell for more content width. [2:1]</td>
<td>Another one. [2:2]</td>
<td>Last one. [2:3]</td>
</tr>
</table>
</body>
</html>