-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5.2.7Activity.html
More file actions
52 lines (51 loc) · 1.03 KB
/
5.2.7Activity.html
File metadata and controls
52 lines (51 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>A fancy table</title>
<link rel="stylesheet" href="css/tableactivity.css">
</head>
<body>
<!--
<table>
<thead>
<tr class = head>
<th>Col1</th>
<th>Col2</th>
<th>Col3</th>
</tr>
</thead>
<tbody>
<tr class = body>
<td>Row1</td>
<td>Row2</td>
<td rowspan="2">Row3</td>
</tr>
<tr class = body>
<td colspan="2">Row4</td>
</tbody>
</table>
-->
<table class = eg1>
<thead>
<tr class = head>
<th scope="col">Col1</th><th scope="col">Col2</th><th scope="col">Col3</th><th scope="col">Col4</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row1</td><td>Row2</td><td>Row3</td><td>Row4</td>
</tr>
<tr>
<td>Row1</td><td>Row2</td><td>Row3</td><td>Row4</td>
</tr>
<tr>
<td>Row1</td><td>Row2</td><td>Row3</td><td>Row4</td>
</tr>
<tr>
<td colspan="2">Row1</td><td colspan="2">Row2</td>
</tr>
</tbody>
</table>
</body>
</html>