forked from IIITKalyaniFOSC/papervault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (45 loc) · 2 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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.0.10/js/all.js" integrity="sha384-slN8GvtUJGnv6ca26v8EzVaR9DC58QEwsIk9q1QXdCU8Yu8ck/tL/5szYlBbqmS+" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='stylesheet' type='text/css' href="css/style.css">
<script src="js/script.js"></script>
</head>
<body>
<form id="frmpaper" action="showpaper.html" method="get">
<input type="text" name="urls" style="display:none;"/>
</form>
<div id="header">
<a onclick="location.reload()" href="#"><img src="logo.png" id="logo" /></a>
</div>
<div id="querybox">
<input type="text" id="searchbox" placeholder="Type the name of the course here" />
<button type="button" id="btnsearch" onclick="dosearch(0)">Search</button>
<br/>
<a id="showall" href="#" onclick="dosearch(1)">View All Question Papers</a>
</div>
<div id="recentbox">
</div>
<div id="resultbox">
</div>
<div id="contributers">
<button type="button" name="button" onclick="showresult()">click here for the list of people who maintain this website.</button>
</div>
<div id="contributer-result" class="not-active">
<ul style="list-style: none;">
<li><a href="https://github.com/anubhavp28" target="_blank">Anubhav Patel</i></a></li>
<li><a href="https://github.com/zeus0789" target="_blank">Abhishek Tiwari</i></a></li>
</ul>
</div>
<div class="foot">
<p><a href="https://github.com/IIITKalyaniFOSC"><i class="fab fa-github fa-2x"></i></a></p>
<p><a href="https://github.com/IIITKalyaniFOSC"><i class="fab fa-facebook fa-2x"></i></a></p>
<p><a href="https://github.com/IIITKalyaniFOSC"><i class="fab fa-slack fa-2x"></i></a></p>
<p><a href="https://github.com/IIITKalyaniFOSC"><i class="fab fa-medium fa-2x"></i></a></p>
<p style="display: block; padding:0;">© by IIITKalyaniFOSC. </p>
</div>
</body>
</html>