-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
70 lines (68 loc) · 1.83 KB
/
404.html
File metadata and controls
70 lines (68 loc) · 1.83 KB
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
<!DOCTYPE html>
<html>
<head>
<title>404 • PlanGames</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<h2>Oops! Page not found.</h2>
<div>
<img src="./img/404.gif" alt="404">
</div>
<h4>We can't fint the page you're looking for.</h4>
<a href="https://games.plan.com.np/"><button type="button" class="main-btn">GO BACK HOME</button></a>
</div>
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family: 'Poppins', sans-serif;
background-color:#f0f0f0;
min-height:100vh;
display: flex;
align-items: center;
justify-content: center;
}
.wrapper{
text-align: center;
}
.wrapper h2{
margin:40px 0;
font-size:2.5rem;
}
.wrapper img{
width:800px;
max-width:75%;
-webkit-user-drag: none;
}
.wrapper h4{
margin:40px 0 20px;
font-size:1.2rem;
}
.main-btn{
padding:15px;
background-color: #6c63ff;
color:#fff;
border:none;
font-weight:700;
letter-spacing: 1px;
border-radius: 6px;
cursor: pointer;
}
@media (max-width:767px){
.wrapper h2{
font-size:2rem;
}
.wrapper h4{
font-size:1rem;
}
}
</style>
</body>
</html>