forked from SauravMukherjee44/CodeIN-Community-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
85 lines (70 loc) · 2.23 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
<!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>404 - Not Found</title>
<meta name="description"
content="CodeIN Community is the Community of Coding Enthusiasts
Join Us for Hackathons, Technical Events, Open Source, Internship Opportunities and various upcoming opportunities to learn different technologies.">
<link rel="shortcut icon" href="./assets/img/logo.png" type="image/x-png">
<link rel="stylesheet" href="404.css">
<style>
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap");
body {
text-align: center;
font-family: "Open Sans", sans-serif;
}
h1 {
color: #f63854;
font-size: 10em;
/* margin: 15vh auto 0vh auto; */
}
h3 {
font-size: 2.2em;
}
a {
text-decoration: none;
font-size: 1.3em;
color: royalblue;
}
a:hover {
color: #f63854;
}
@media only screen and (min-width: 600px) {
h1 {
font-size: 15em;
}
h3 {
font-size: 3em;
}
a {
font-size: 1.5em;
}
}
</style>
</head>
<body>
<section class="page_404">
<div class="container">
<div class="row">
<div class="col-sm-12 ">
<div class="col-sm-10 col-sm-offset-1 text-center">
<div class="four_zero_four_bg">
<h1 class="text-center ">404</h1>
</div>
<div class="contant_box_404">
<h3 class="h2">
Look like you're lost
</h3>
<p>the page you are looking for not avaible!</p>
<a href="https://codeincommunity.com/" class="link_404">Go to Home</a>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>