-
Notifications
You must be signed in to change notification settings - Fork 3
/
h.html
40 lines (39 loc) · 1.62 KB
/
h.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
<!-- h stands for History -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>History</title>
<link rel="icon" href="./res/Icons/Studybyte.png">
<link rel="stylesheet" href="./scripts/css/style.css">
</head>
<body>
<script src="./scripts/js/Color.js"></script>
<script src="./scripts/js/Studybyte.js"></script>
<header>
<nav>
<div class="SearchAtTop">
<a href="index.html" title="Studybyte Home">Studybyte</a>
<input type="text" placeholder="Type to search..." id="Searchbar" onkeydown="IsEnter();" autocomplete="off">
<input type="button" value="Studybyte" id="Searchbtn" onclick="TryToSearch();">
</div>
<script> FocusSearchbarOnEsc(); </script>
</nav>
<footer>
<input type="button" id="ClearHistory" value="Clear history" onclick="ClearUserHistory();">
</footer>
</header>
<section>
<ul id="ListHistory">
<!-- All the search history will go here. -->
<!-- <li onclick="func();"></li> This is the template. -->
</ul>
<h1 id="NoSearchHistory">You have no recent searches.</h1>
</section>
<button id="ScrollToTop" title="Scroll To Top" onclick="ScrollToTOP();"><img src="./res/Icons/Double Up-Arrow.png" width="12px" height="12px"></button>
<script> GetHistory(); </script>
<script> ScrollToTOP_Properties(); </script>
</body>
</html>