-
Notifications
You must be signed in to change notification settings - Fork 138
/
404.html
83 lines (62 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="https://github.com/sz-games/home/blob/main/G.png?raw=true">
<title>Sz Games</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background: grey;
}
/* Header/Logo Title */
.header {
text-align: center;
width: auto;
font-size: 30px;
font-family: Arial, Helvetica, sans-serif;
}
/* Page Content */
</style>
</head>
<body>
<style>
h {
animation: anim 5s ;
}
p {
animation: anim 5s ;
}
h1 {
animation: anim 5s ;
}
img {
animation: animm 5s ;
}
h2 {
animation: animmm 5s infinite;
}
@keyframes anim {
0% {transform : scale(0.1); transition: 0.5s;}
10% {transform : scale(1.0); transition: 0.5s;}
}
@keyframes animm {
0% {transform : scale(0.1); transition: 0.5s;}
20% {transform : scale(1.0); transition: 0.5s;}
}
@keyframes animmm {
10% {opacity: 0; transition: 0.5s;}
50% {opacity: 1; transition: 0.5s;}
60% {opacity: 0; transition: 0.5s;}
90% {opacity: 1; transition: 0.5s;}
}
</style>
<div class="header">
<img src="https://github.com/sz-games/home/blob/main/Gg.png?raw=true" style="position: relative; width: 150px; height: 150px;" alt="img">
<h1>Sz Games</h1>
<p>Page Not Found!</p>
<h2 style="cursor: pointer; text-decoration: none;" onclick="window.location = 'https://sz-games.github.io'">Go Home</h2>
<p>Enjoy Your Stay!</p>
</div>
</body>
</html>