-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path404.html
115 lines (108 loc) · 2.93 KB
/
404.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="manifest" href="/manifest.json" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="application-name" content="Databased" />
<meta name="apple-mobile-web-app-title" content="Databased" />
<meta name="theme-color" content="#101010" />
<meta name="msapplication-navbutton-color" content="#101010" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="msapplication-starturl" content="/" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/img/icon-192x192.png"
/>
<link
rel="apple-touch-icon"
type="image/png"
sizes="192x192"
href="/img/icon-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="256x256"
href="/img/icon-256x256.png"
/>
<link
rel="apple-touch-icon"
type="image/png"
sizes="256x256"
href="/img/icon-256x256.png"
/>
<link
rel="icon"
type="image/png"
sizes="384x384"
href="/img/icon-384x384.png"
/>
<link
rel="apple-touch-icon"
type="image/png"
sizes="384x384"
href="/img/icon-384x384.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="/img/icon-512x512.png"
/>
<link
rel="apple-touch-icon"
type="image/png"
sizes="512x512"
href="/img/icon-512x512.png"
/>
<title>Databased | IISc's Undergraduate CS Club</title>
<link rel="stylesheet" href="/css/common.css" />
<link rel="stylesheet" href="/css/profilePage.css" />
<link rel="icon" href="/img/favicon-32x32.png" type="image/x-icon" />
<script src="/js/footerinclude.js"></script>
</head>
<body>
<div id="loader"></div>
<header>
<header-component></header-component>
</header>
<main>
<div id="person-details">
<div id="profile-photo"></div>
<div id="profile-batch"></div>
<div id="profile-name"></div>
<div id="profile-bio"></div>
<div id="profile-links">
<a href="" id="profile-email" target="_blank"
>
<span class="material-symbols-outlined">
mail
</span>
</a>
<a href="" id="profile-linkedin" target="_blank"
><img src="/img/social/linkedin.png"
/></a>
<a href="" id="profile-github" target="_blank"
><img src="/img/social/github.png"
/></a>
</div>
</div>
</main>
<footer>
<footer-component></footer-component>
</footer>
<script src="/js/common.js"></script>
<script src="/js/404handler.js"></script>
</body>
</html>