-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffline.html
31 lines (26 loc) · 880 Bytes
/
offline.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offline</title>
<link rel="icon" type="image/x-icon" href="img/MinigameCollectionFavicon.png">
<meta name="theme-color" content="#242a3a">
<link rel="stylesheet" href="style.css?v=2.8.1.1">
</head>
<body>
<div id="gamesContainer">
<div id="games" class="fade-in">
<h1 style="text-align: center;">You're Offline</h1>
<br>
<p>It looks like you don't have an internet connection. Please check your
network and try again.</p>
<br>
<a href="/minigame-collection/">
<button style="width: 100%;">Go Back</button>
</a>
</div>
</div>
</body>
</html