-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcss-dynamic-customized-table.html
61 lines (61 loc) · 1.19 KB
/
css-dynamic-customized-table.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
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CSS-DYNAMIC-CUSTOMIZED-TABLE</title>
<link rel="stylesheet" href="css/css-dynamic-customized-table.css">
</head>
<body>
<table id="kurosawa">
<caption>The Masterworks of Akira Kurosawa</caption>
<col id="film-title">
<col id="film-y-release">
<col id="film-run-time">
<thead>
<tr>
<th><a href="#film-title">Title</a></th>
<th><a href="#film-y-release">Year of Release</a></th>
<th><a href="#film-run-time">Run Time</a></th>
</tr>
</thead>
<tbody>
<tr>
<td>Rashomon</td>
<td>1950</td>
<td>88 minutes</td>
</tr>
<tr>
<td>Ikuru</td>
<td>1952</td>
<td>143 minutes</td>
</tr>
<tr>
<td>Seven Samurai</td>
<td>1954</td>
<td>207 minutes</td>
</tr>
<tr>
<td>Throne of Blood</td>
<td>1957</td>
<td>105 minutes</td>
</tr>
<tr>
<td>The Hidden Fortress</td>
<td>1958</td>
<td>139 minutes</td>
</tr>
<tr>
<td>Yojimbo</td>
<td>1961</td>
<td>110 minutes</td>
</tr>
<tr>
<td>Ran</td>
<td>1985</td>
<td>160 minutes</td>
</tr>
</tbody>
</table>
</body>
</html>