-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
57 lines (56 loc) · 1.42 KB
/
Copy pathoffline.html
File metadata and controls
57 lines (56 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Offline</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#3f51b5">
<link rel="manifest" href="./manifest.json">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
-webkit-font-smoothing: antialiased;
background-color: #252525;
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
}
img {
margin-bottom: 2rem;
display: inline;
display: block;
margin-left: auto;
margin-right: auto;
}
label{
font-weight: bolder;
font-size: 2.4rem;
}
span{
color: orange;
}
div{
display: flex;
column-gap: 2rem;
align-items: center;
}
h1, div {
text-align: center;
}
p{
color: grey;
}
</style>
</head>
<body>
<div>
<label>TASK<span>IT</span></label>
</div>
<h1>Upps!!! you are offline.</h1>
<p>Check your connection and try again</p>
</body>
</html>