-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
27 lines (24 loc) · 1.15 KB
/
offline.html
File metadata and controls
27 lines (24 loc) · 1.15 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
<!-- offline.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offline</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/jpeg" href="icon.jpg">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="manifest" href="manifest.json">
</head>
<body>
<div class="container">
<h1 class="header">
<span class="icon"><img src="circle-check-solid.svg" alt="Icon description"></span> My Checklist <span class="icon"><img src="bolt-solid.svg" alt="Icon description">
</h1>
<div class="info">
<span class="info-icon"><i class="fa-solid fa-info-circle"></i></span>
<small><kbd>You are Offline. </kbd> Sorry, the app isn't available right now. Please check your connection and try again.</small>
</div>
</div>
</body>
</html>