-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 1.39 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
<!doctype html>
<html>
<head>
<title> Madhacks Website Moves </title>
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png">
<link rel="manifest" href="./favicon/site.webmanifest">
<link rel="mask-icon" href="./favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<script>
window.location.href = "https://www.madhacks.io";
</script>
<style>
html{
background-color:#0a3e54;
}
.container{
height:100%;
width:100%;
text-align:center;
color:white;
padding:70px 0;
}
h1{
font-size:100%;
}
a{
color:white;
text-decoration:underline;
}
a:hover{
color:#f3a022;
}
img{
padding:40px;
}
</style>
<noscript>
<div class="container">
<a href="https://www.madhacks.io"><img src="./madhacks.png" width="250px" height="250px"/></a>
<h1> We have permanently moved our website to <a href="https://www.madhacks.io">https://www.madhacks.io </a></h1>
<p> Click <a href="https://www.madhacks.io">Here</a> to redirect to our new website </p>
</div>
</noscript>
</head>
</html>