-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (50 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Mathematics Society, IIT Delhi</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#fff">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#fff">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#fff">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css'>
<link rel="stylesheet" href="./style.css" />
<noscript>
<style>
div#no-js{
display: block;
height: 100vh;
width: 100vw;
background-color: #fafafa;
z-index: 1000;
position: fixed;
top:0;
left:0;
color: #000;
padding: 4px;
font-size: 1.25em;
}
</style>
</noscript>
</head>
<body onhashchange="hash_checker()">
<noscript>
<div id="no-js">You need to enable JavaScript to use this website.</div>
</noscript>
<div class='loader'></div>
<header></header>
<main></main>
<footer>
<div><a id="mode-toggler" style="text-decoration: underline;cursor:pointer;">Switch to dark mode</a></div>
<div class="copy">Copyright © 2020 Mathematics Society, IIT Delhi</div>
</footer>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src='https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js'></script>
<script src='./script.js'></script>
</body>
</html>