-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
62 lines (49 loc) · 1022 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>401</title>
<style>
@font-face{
font-family: "Lato-Regular";
src: url("nm5.woff2") format("opentype");
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
background:#fff;
font-family: "Lato-Regular";
color: #1a1a1a;
}
.main{
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
flex-direction: column;
}
h1,p{
text-align: center;
}
@media (max-width:600px) {
.main{
scale: 0.85;
}
}
</style>
</head>
<body>
<div class="main">
<h1>Sorry There seems to be an error!</h1>
<p>It's not you it's us we'll try to fix it thatnk you for using scheema.</p>
</div>
</body>
</html>