-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
34 lines (31 loc) · 1.4 KB
/
options.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
<html>
<head>
<meta charset="UTF-8">
<title>Easy History Options</title>
<link rel="stylesheet" href="css/options.css">
</head>
<body>
<div class="bd">
<h1 align="center">Easy History Options</h1>
<div class="opt">
<h2>Sort the history according to:</h2>
<button id="time" class="thme lg">Time <span id="ttcl">✓</span></button>
<button id="visit" class="thme dk">Visit <span id="vtcd" style="color:white;">✓</span></button>
<p style="font-size: 15px;"><strong>Time </strong> => History will be arranged in a manner such that
<br> the last visited link will be on the top
<br>
<br> <strong>Visit</strong> => History will be arranged in a manner such that
<br> the most visited link will be on the top</p>
<h2>Select a Theme:</h2>
<button id="lg" class="thme lg">Light <span id="tcl">✓</span></button>
<button id="dk" class="thme dk">Dark <span id="tcd" style="color:white;">✓</span></button>
<br>
<br>
<button id="back"><a href="popup.html" style="text-decoration: none;font-weight: bold;color:black">Back</a></button>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/mousetrap.js"></script>
<script src="js/options.js"></script>
</body>
</html>