-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path404.html
51 lines (47 loc) · 1.17 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
<!DOCTYYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="NIT Delhi, 404 ERROR, PAGE NOT FOUND">
<meta name="keywords" content="NIT Delhi, 404 ERROR, PAGE NOT FOUND">
<meta name="author" content="Sarang Kartikey">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Raleway:200" rel="stylesheet">
<link rel="icon" href="404.png">
<title>PAGE NOT FOUND</title>
<style>
body{
font-family: 'Raleway', sans-serif;
}
.container{
width: 70%;
display: block;
margin: 0 auto;
}
.image-wrap{
display: block;
margin: 25% auto 0em auto;
height: 150px;
width: 150px;
}
.header-wrap{
text-align: center;
}
.header-wrap h1{
font-weight: 100;
color: #B00000;
margin: 5px;
}
</style>
</head>
<body>
<div class="container">
<div>
<img class="image-wrap" src="404.png" />
</div>
<div class="header-wrap">
<h1>PAGE NOT FOUND</h1>
</div>
</div>
</body>
</html>