-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tabs.html
31 lines (30 loc) · 905 Bytes
/
tabs.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
<!DOCTYPE html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Saved tabs — Save All Tab URLs</title>
<link rel="shortcut icon" type="image/png" href="/icons/logo-48.png"/>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="normalize.css">
</head>
<body>
<div class="header">
<h2>Saved tabs</h2>
<p>Here's your saved tabs! It's a textbox, so feel free to edit the list.</p>
</div>
<div class="textarea-container">
<textarea id="main-textarea">
</textarea>
</div>
<a id="download-link">
<svg class="feather">
<use xlink:href="/icons/feather-sprite.svg#save"/>
</svg>
Download
</a>
<input type="checkbox" id="auto-update">
<span class="auto-update-text">Auto update</span>
<script src="script.js"></script>
</body>
</html>