-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (45 loc) · 1.31 KB
/
index.html
File metadata and controls
51 lines (45 loc) · 1.31 KB
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
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="src/style.css">
</head>
<body>
<table id="table-1">
<tr>
<td class="input-title">
Name
</td>
<td class="input-title">:</td>
<td class="input-td">
<input type="text" id="site-name-box">
</td>
<td rowspan="3">
<img src="src/ico.png" id="logo">
</td>
</tr>
<tr>
<td class="input-title">
URL
</td>
<td class="input-title">:</td>
<td>
<input type="text" id="site-url-box">
</td>
</tr>
<tr>
<td colspan="3">
<button id="save-button">Save</button>
<button id="tab-save-button">Save Tab</button>
<button id="clear-button">Clear</button>
</td>
</tr>
</table>
<hr>
<div id="output">
<table id="site-list">
</table>
</div>
<script src="src/index.js"></script>
</body>
</html>