forked from supriya46788/Research-Paper-Organizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
33 lines (33 loc) · 780 Bytes
/
offline.html
File metadata and controls
33 lines (33 loc) · 780 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Offline — Research Paper Organizer</title>
<style>
body {
font-family: system-ui, Arial, sans-serif;
display: grid;
place-items: center;
min-height: 100vh;
margin: 0;
text-align: center;
background: #f9fafb;
}
.card {
max-width: 500px;
padding: 2rem;
background: white;
border-radius: 1rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<div class="card">
<h1>You’re offline</h1>
<p>This page isn’t available without an internet connection.</p>
<a href="./">Back to Home</a>
</div>
</body>
</html>