forked from vishanurag/Canvas-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
61 lines (60 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404</title>
<style>
.sectionA{
font-family: Familjen Grotesk, sans-serif;
font-size: 250px;
text-align: center;
font-weight: bold;
}
.sectionAa{
font-family: Familjen Grotesk, sans-serif;
font-size: 50px;
text-align: center;
font-weight: bold;
}
.sectionAb{
font-family: Familjen Grotesk, sans-serif;
font-size: 20px;
text-align: center;
margin-top: 5%;
color: grey;
}
.greenbutton{
font-family: Familjen Grotesk, sans-serif;
font-size: 20px;
text-align: center;
font-weight: bold;
color: white;
background-color: cornflowerblue;
padding: 10px 20px;
border-radius: 10px;
margin: 35% 35%;
margin-top: 5%;
}
footer a{
margin-top: -25%;
font-family: Familjen Grotesk, sans-serif;
display: flex;
justify-content: center;
text-decoration: none;
color: black;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="sectionA">404</div>
<div class="sectionAa">Page Not Found</div>
<div class="sectionAb">The page you are looking for doesn't exist or has been moved</div>
<div type="button" class="greenbutton">GO HOME</div>
</div>
<footer>
<a target="_blank" href="https://github.com/vishantrathi">@VISHANT RATHI</a>
</footer>
</body>
</html>