-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (74 loc) · 2.54 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
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<title>Error 404 | Page Not Found</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta description="Error 404. The page you're looking for can't be found. A sample error 404 page to display when the page is not avaialble." />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="shortcut icon" href="images/broken_link_favicon.ico">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body {
font: 20px Montserrat, sans-serif;
line-height: 1.8;
color: #f5f6f7;
}
p {
font-size: 16px;
}
.margin {
margin-bottom: 45px;
}
.bg-1 {
background-color: rgb(0, 0, 0);
}
img {
width: 80%;
height: auto;
}
.bg-4 {
background-color: #2f2f2f;
/* Black Gray */
color: #fff;
}
.container-fluid {
padding-top: 70px;
padding-bottom: 70px;
}
html {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
</head>
<body>
<!-- First Container -->
<div class="container-fluid bg-1 text-center">
<h1 style="font-size:80px;" class="margin">Oops!</h1>
<img src="images/error404.png" class="img-responsive margin" style="display:inline" alt="Error 404">
<h3>The page you are looking for can't be found</h3>
<br />
<div class="row align-items-center">
<div class="col"></div>
<div class="col">
<h3>Visit Homepage :</h3>
<a href="https://saideepdicholkar.blogspot.com">saideepdicholkar.blogspot.com</a>
</div>
<div class="col"></div>
</div>
<br /><br />
<h3>Looks like it's a Broken Link</h3>
<img src="images/broken_link.png" class="img-responsive margin" style="display:inline" alt="Broken Link">
</div>
<!-- Footer -->
<footer class="container-fluid bg-4 text-center">
<p>Copyrights © <a href="https://twitter.com/saidicholkar">Saideep Dicholkar</a></p>
</footer>
</body>
</html>