-
Notifications
You must be signed in to change notification settings - Fork 3
/
r.html
41 lines (40 loc) · 1.63 KB
/
r.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
<!-- r stands for Results -->
<!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>Studybyte</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>
<h4 id="NumOfResults">0 results found!</h4>
</footer>
</header>
<section>
<ul id="Results">
<!-- All the results will go here. -->
<!-- <li id="CalculatedAns"></li> This is the template.-->
<!-- <li><a href=""></a></li> This is the template.-->
</ul>
<button id="ShowMore">Show more.</button>
<button id="ScrollToTop" title="Scroll To Top" onclick="ScrollToTOP();"><img src="./res/Icons/Double Up-Arrow.png" width="12px" height="12px"></button>
<script> GetResults(); </script>
<script> ScrollToTOP_Properties(); </script>
</section>
</body>
</html>