-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·61 lines (54 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Temporary Bookmark</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
body {
min-width: 300px;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
padding-bottom: 10px;
}
a {
text-decoration: none;
}
a:visited {
color: blue;
}
h4 {
color:slateblue;
margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h4 style="margin-bottom: 0">Temporary Bookmark</h4>
<p style="text-align: center;font-size: 12px;margin-bottom: 8px">Version: 2.0.0 - DuyNguyen02</p>
<div class="page-status"></div>
<button id="save-url" class="save-url btn btn-primary btn-sm">
Save
</button>
<button class="btn btn-primary btn-sm btn-import">
Import
</button>
<button class="btn btn-primary btn-sm btn-export">
Export
</button>
<button id="clear-url" class="clear-url btn btn-danger btn-sm">
Clear
</button>
<br><br>
<input class="form-control input-search" style="width: 100%" type="text" placeholder="Search your bookmark">
<br>
<div class="url-list" id="">
</div>
</div>
<script src="/js/bootstrap.bundle.min.js"></script>
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>