<!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>