-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (40 loc) · 1.18 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Links Tracker</title>
</head>
<body>
<!-- input type is a self closing tag -->
<div class="text-input-section">
<input type="text" placeholder="Title" id="text-el">
<input type="text" placeholder="URL" id="input-el">
</div>
<div class="btns-section">
<button id="input-btn" >SAVE INPUT</button>
<button id="delete-btn" >DELETE ALL</button>
<p>*Double click to delete all the stored data</p>
</div>
<div class="btns-section-2">
<button id="save-tab-btn">SAVE TAB</button>
</div>
<div id="saved-links">
<h3>SAVED LINKS:</h3>
</div>
<div class="links-section">
<table >
<thead>
<tr>
<th id="table-key-head">Title</th>
<th id="table-value-head">URL</th>
</tr>
</thead>
<tbody id="links-table">
</tbody>
</table>
</div>
<script src="index.js"></script>
</body>
</html>