-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
84 lines (78 loc) · 3.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MZPJMRVYE9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-MZPJMRVYE9');
</script>
<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>UPSC STAR</title>
<meta name="description" content="A powerful tool to search questions asked in UPSC Civil Service Examination.">
<meta name="keywords" content="UPSC, CSE, Civil, Service, Examination, Mains, Prelims, GS-I, GS-II, GS-III, GS-IV, Essay, Language, Optional">
<meta name="author" content="Aman Bhaskar">
<link type="image/png" sizes="16x16" rel="icon" href="res/star.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,1,0" />
<script src="https://kit.fontawesome.com/d7b86548bd.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,1,0" />
</head>
<body>
<div id="header">
<div></div>
<div> UPSC STAR</div>
<div><span class="material-symbols-outlined" id="theme-icon">dark_mode</span></div>
</div>
<div id="banner">
<h1>Filter through ocean of PYQs.</h1>
<p>Questions asked in UPSC Civil Service Examination | Mains - Written</p>
</div>
<div id="search">
<div><input type="text" id="search-bar" placeholder="Search"></input></div>
<div class="btn" id="search-btn" type="submit"><span class="material-symbols-rounded">search</span></div>
<div class="btn" id="filter-btn"><span class="material-symbols-rounded">tune</span></div>
<div></div>
</div>
<div class="filter-box">
<div id="years-box" class="filter-part">
<div class="filter-title">Year</div>
<div class="filter-tags year-filter"><p>2021</p></div>
<div class="filter-tags year-filter"><p>2020</p></div>
<div class="filter-tags year-filter"><p>2019</p></div>
<div class="filter-tags year-filter"><p>2018</p></div>
<div class="filter-tags year-filter"><p>2017</p></div>
<div class="filter-tags year-filter"><p>2016</p></div>
<div class="filter-tags year-filter"><p>2015</p></div>
<div class="filter-tags year-filter"><p>2014</p></div>
<div class="filter-tags year-filter"><p>2013</p></div>
</div>
<div id="papers-box" class="filter-part">
<div class="filter-title">Paper</div>
<div class="paper-tags"><p>GS-I</p></div>
<div class="paper-tags"><p>GS-II</p></div>
<div class="paper-tags"><p>GS-III</p></div>
<div class="paper-tags"><p>GS-IV</p></div>
</div>
</div>
<div id="questions-list"></div>
<footer>
<p id="foot-p">Dev</p>
<div class="link-box">
<div class="links"><a href="https://github.com/amanbh2" id="github-link"><i class="fa-brands fa-github"></i></a></div>
</div>
<div><h4>Aman Bhaskar</h4></div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/party-js@latest/bundle/party.min.js"></script>
<script src="app.js"></script>
<script src="dark.js"></script>
</body>
</html>