Skip to content
Snippets Groups Projects
popup.html 1004 B
Newer Older
<!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="/platform.js" defer></script>
    <script src="popup.js" defer></script>
    <script src="/cookies.js" defer></script>
	<script src="/includes/table-resize-master/table-resize.js" defer></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>