-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (64 loc) · 2.09 KB
/
Copy pathindex.html
File metadata and controls
66 lines (64 loc) · 2.09 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
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#007bff" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" sizes="192x192" href="icons/app-icon-192x192.png" />
<link rel="icon" sizes="512x512" href="icons/app-icon-512x512.png" />
<link rel="manifest" href="manifest.json" />
<title>PWA</title>
</head>
<body>
<header class="header">
<div class="title-toggle-wrapper">
<h1 class="header-title">PWA Example</h1>
<div id="toggleSidebar" class="toggle-icon">☰</div>
</div>
<nav class="header-content">
<div class="header-item">Sign Up</div>
<div class="header-item">Sign In</div>
</nav>
</header>
<div class="container">
<aside id="sidebar" class="sidebar">
<ul>
<li>Dashboard</li>
<li>User</li>
<li>Messages</li>
<li>Analytics</li>
<li>Side Manager</li>
<li>Order</li>
<li>Saved Settings</li>
</ul>
</aside>
<main id="mainContent" class="main-content">
<h1>Progressive Web Application</h1>
<p>
A simple example of a Progressive Web App that provides offline
access, home screen installation, responsive design, and standalone
mode.
</p>
<section id="pwaFeatures" class="pwa-features">
<h2>Main Features</h2>
<ul>
<li>
Offline access: The app works without an internet connection.
</li>
<li>
Add to home screen: You can install the app on your device for
quick access.
</li>
<li>Responsive design: It looks great on any screen size.</li>
<li>
Standalone mode: Once installed, the app runs like a native app
without a browser UI.
</li>
</ul>
</section>
</main>
</div>
<script src="script.js"></script>
</body>
</html>