forked from makyurt/DGBio
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathoffline.html
49 lines (49 loc) · 1.42 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offline Mode</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
text-align: center;
padding: 50px;
}
h1 {
font-size: 28px;
}
p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 20px;
}
.logo {
width: 120px;
margin-bottom: 20px;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
}
.btn:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<img class="logo" src="icon512_rounded.png" alt="DigiByte.org">
<h1>Offline Mode</h1>
<p>You are currently accessing the offline version of our website.</p>
<p>This means you are not connected to the internet, but you can still access some of the basic content.</p>
<p>If you'd like to go back online and access the full website with the latest updates, please check your internet connection.</p>
<a class="btn" href="/">Go to Homepage</a>
</body>
</html>