-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable-tutorial.html
54 lines (45 loc) · 942 Bytes
/
table-tutorial.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="tutorial.css" type="text/css">
</head>
<body>
<table>
<tr>
<th>book</th><th>author</th><th>Is there a film?</th>
</tr>
<tr>
<td>Harry Potter and the Sorcerer's Stone</td>
<td> J.K. Rowling </td>
<td> Yes </td>
</tr>
<tr>
<td>Harry Potter and the Chamber of Secrets</td>
<td> J.K. Rowling </td>
<td> Yes </td>
</tr>
<tr>
<td>Kafka on the Shore</td>
<td> Haruki Murakami </td>
<td> No </td>
</tr>
<tr> <!-- !!! fix this -->
The Good Earth
Pearl S. Buck
Yes
</tr>
<tr>
In Search of Lost Time
Marcel Proust
Yes
</tr>
<tr>
Discipline and Punish
Michel Foucault
No
</tr>
<tr>
</tr>
</table>
</body>
</html>