-
Notifications
You must be signed in to change notification settings - Fork 20
/
404.html
80 lines (64 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Page not found | Intellimixio</title>
<link rel="icon" type="image/x-icon" href="assets/img/favicon.png">
<link href="assets/img/favicon.png" rel="icon">
<!-- Bootstrap library -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<!-- Bootstrap library -->
<style>
h1 {
/* text-align: center; */
color: red;
}
p {
/* text-align: center; */
color: red;
font-size: large;
}
body {
background-color: black;
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
::-webkit-scrollbar {
display: none;
}
div button a {
text-decoration: none;
color: white;
font-size: large;
font-weight: 200;
font-family: Georgia, 'Times New Roman', Times, serif;
}
div button a:hover {
color: rgb(255, 255, 255);
}
#home-btn {
border-radius: 10px;
margin: auto;
}
#home-btn:hover {
border-radius: 4px;
}
img {
width: 400px;
height: 450px;
margin: 17px auto;
}
</style>
</head>
<body>
<h1 class="text-center">Please try again</h1>
<p class="text-center">Sorry for inconvenience.</p>
<div class="text-center">
<img src="https://intellimixio.in/assets/img/error.svg" alt="error page" class="img-fluid" />
<br>
<button class="btn btn-danger" id="home-btn"><a href="https://intellimixio.in/">Home</a></button>
</div>
</body>
</html>