-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
36 lines (35 loc) · 1.63 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
<!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">
<meta name="description" content="Studybyte is a Search Engine completely developed from scratch to help Students, find Study material easily on the Internet.">
<meta name="keywords" content="studybyte, search engine, github, light-lens, study material, study content, virtual library, study byte, study search engine">
<meta name="robots" content="INDEX, FOLLOW">
<title>Studybyte</title>
<link rel="icon" href="./res/Icons/Studybyte.png">
<link rel="stylesheet" href="./scripts/css/index.css">
</head>
<body>
<script src="./scripts/js/Color.js"></script>
<script src="./scripts/js/Studybyte.js"></script>
<header>
<nav>
<ul>
<li><a title="Follow me on Github." href="https://github.com/Light-Lens" target="_blank">About us</a></li>
<li><a title="Studybyte on Github." href="https://github.com/Light-Lens/Studybyte" target="_blank">Github</a></li>
<li><a title="Search History." href="./h.html">History</a></li>
</ul>
</nav>
</header>
<section>
<div>
<h3>Studybyte</h3>
<input type="text" placeholder="Type to search..." id="Searchbar" onkeydown="IsEnter();" autocomplete="off" autofocus>
<input type="button" value="Studybyte" id="Searchbtn" onclick="TryToSearch();">
</div>
<script> FocusSearchbarOnEsc(); </script>
</section>
</body>
</html>