Newer
Older
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
<!doctype html>
<html>
<head>
<title></title>
<meta charset="utf-8"/>
<link href="popup.css" rel="stylesheet"/>
<link href="/includes/table-resize-master/table-resize.css" rel="stylesheet"/>
<script src="popup.js"></script>
<script src="/cookies.js"></script>
<script src="/includes/table-resize-master/table-resize.js"></script>
</head>
<body>
<h1>Cookie Saver</h1>
<table id="example">
<tbody>
<tr>
<th>Title 1</th>
<th>Title 2</th>
<th>Title 3</th>
<th>Title 4</th>
</tr>
<tr>
<td>Column 1 Row 1</td>
<td>Column 1 Row 2</td>
<td>Column 1 Row 3</td>
<td></td>
</tr>
<tr>
<td>Column 2 Row 1</td>
<td>Column 2 Row 2</td>
<td></td>
<td>Column 2 Row 3</td>
</tr>
</tbody>
</table>
</body>
</html>