blob: 890357156d44941ed20bb487cdc1e75dac3b3e94 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>There is no title</title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<h2>My nonexistent list of Favorite Movies</h2>
<table>
<tr>
<th>Favorite Movie</th>
<th>Favorite Actor/Actress in Said Movie</th>
</tr>
<tr>
<!--I don't have a favorite so I'm leaving these blank.-->
<td>Name of Favorite Movie</td>
<td>Name of Favorite Actor/Actress</td>
</tr>
<tr>
<!--I don't have a favorite so I'm leaving these blank.-->
<td>Name of Favorite Movie 2</td>
<td>Name of Favorite Actor/Actress 2</td>
</tr>
</table>
</body>
</html>
|