forked from useclassplay/useclassplay.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
101 lines (87 loc) · 3.61 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/assets/fontawesome/css/all.css">
</head>
<body>
<br><br><br><br>
<center>
<h1 style="font-size: 150px; margin: 0; font-weight: 1000; color: #1f51ff;">:/</h1>
</center>
<center>
<h1 class="title" style="font-weight: 560;">Uh Oh!</h1>
<p style="margin-top: -20px; font-size: 20px;">Looks like you found a nonexistent page. <br><br> Instead, why not try one of these?</p>
</center>
<br>
<div class="container">
<a href="/index.html" style="text-decoration: none;">
<button class="card" style="cursor: pointer; margin: 10px;">
<div class="noflex">
<h1 style="margin-top: 35px;">Home</h1>
<br>
<i class="fa-solid fa-house" style="scale: 350%; margin-right: 2px;"></i>
</div>
</button>
</a>
<a href="/g.html" style="text-decoration: none;">
<button class="card" style="cursor: pointer; margin: 10px;">
<div class="noflex">
<h1 style="margin-top: 35px;">Games</h1>
<br>
<i class="fa-solid fa-gamepad" style="scale: 350%; margin-right: 2px;"></i>
</div>
</button>
</a>
<a href="/apps.html" style="text-decoration: none;">
<button class="card" style="cursor: pointer; margin: 10px;">
<div class="noflex">
<h1 style="margin-top: 35px;">Apps</h1>
<br>
<i class="fa-solid fa-folder-open" style="scale: 350%; margin-right: 2px;"></i>
</div>
</button>
</a>
<a href="/s.html" style="text-decoration: none;">
<button class="card" style="cursor: pointer; margin: 10px;">
<div class="noflex">
<h1 style="margin-top: 35px;">Sounds</h1>
<br>
<i class="fa-solid fa-music" style="scale: 350%; margin-right: 2px;"></i>
</div>
</button>
</a>
<a href="/p.html" style="text-decoration: none;">
<button class="card" style="cursor: pointer; margin: 10px;">
<div class="noflex">
<h1 style="margin-top: 35px;">Search</h1>
<br>
<i class="fa-solid fa-search" style="scale: 350%; margin-right: 2px;"></i>
</div>
</button>
</a>
<a href="/movies" style="text-decoration: none;">
<button class="card" style="cursor: pointer; margin: 10px;">
<div class="noflex">
<h1 style="margin-top: 35px;">Movies</h1>
<br>
<i class="fa-solid fa-tv" style="scale: 350%; margin-right: 2px;"></i>
</div>
</button>
</a>
<a href="/chat" style="text-decoration: none;">
<button class="card" style="cursor: pointer; margin: 10px;">
<div class="noflex">
<h1 style="margin-top: 35px;">Chats</h1>
<br>
<i class="fa-solid fa-message" style="scale: 350%; margin-right: 2px;"></i>
</div>
</button>
</a>
</div>
</body>
</html>