-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·94 lines (81 loc) · 2.6 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE HTML>
<html>
<head>
<!-- Search Engine Meta Tags -->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<meta charset="UTF-8"/>
<meta name="description" content="Website for aggregating internal question papers of IIT Bhubaneswar."/>
<meta name="keywords" content="IIT Bhubaneswar,ERP,ERP IIT Bhubaneswar"/>
<!-- Social Media Meta Tags-->
<meta property="og:title" content="Paper Portal">
<meta property="og:site_name" content="IIT Bhubaneswar | Paper Portal">
<meta property="og:description" content="Website for aggregating internal question papers of IIT Bhubaneswar."/>
<!-- <meta property="og:image" content=""> -->
<!-- <meta property="og:url" content=""> -->
<!-- Scripts required for implementation. -->
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/3.0.4/fuse.min.js"></script>
<script src="resources/scripts/fuzzysearch.js"></script>
<script src="resources/scripts/search.js"></script>
<!-- Meta Tags -->
<!-- Search Engine Meta Tafs -->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<meta charset="UTF-8"/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<title>IITBBS - Question Papers Hub</title>
<style>
.queryDiv {
text-align: center;
margin-top: 3em;
position: relative;
width: 70%;
margin-left: 15%;
}
#query {
font-size: 3em;
font-family: Roboto, sans-serif;
width: 90%;
line-height: 1.5em;
vertical-align: middle;
display: inline-block;
padding: 0;
}
.hidden {
display: none;
}
.resultDiv {
font-size: 1.2em;
font-family: Roboto, sans-serif;
display: inline-block;
margin-left: 15%;
margin-top: 2%;
}
ul {
list-style-type: none;
}
li {
margin-top: 5px;
}
</style>
</head>
<body>
<div class="queryDiv">
<input type="text" id="query" placeholder="Search for Question Papers..."></input>
</div>
<div class="adv">
<!-- <img src="http://www.iitbbs.ac.in/banner/banner_1497430928.jpg"/> -->
</div>
<div class="resultDiv">
<ul id="result">
</ul>
</div>
<footer>
<center>
<div class="">
<a href='contribute.html'>Click here to contribute!</a>
</div>
</center>
</footer>
</body>
</html>