-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
55 lines (50 loc) · 1.93 KB
/
index.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
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PWA Installable Website</title>
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="content">
<h1>Welcome to My PWA Website</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vehicula nisi a suscipit.</p>
</div>
<div class="content">
<a href="#" class="button">Learn More</a>
</div>
</div>
<div class="container">
<div class="content">
<h1>Another Section</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vehicula nisi a suscipit.</p>
</div>
<div class="content">
<a href="#" class="button-alt">Explore</a>
</div>
</div>
<div class="container">
<div class="content">
<h1>Install Our PWA</h1>
<p>Click the button below to install our Progressive Web App and enjoy an enhanced browsing experience.</p>
</div>
<div class="content">
<button id="installButton" class="install-button">Install PWA</button>
</div>
</div>
<!-- Additional container for customizing the website -->
<div class="container">
<div class="content">
<h1>Customize This Website</h1>
<p>You can customize and make this website installable. For more info, visit our GitHub repository:</p>
<a href="https://github.com/NajmAjmal/pwa-template" class="button-customize">GitHub Repository</a>
<a href="https://github.com/NajmAjmal/pwa-template/fork" class="button-customize">Fork Me</a>
</div>
</div>
<!-- Add more containers with content and styling as needed -->
<script src="app.js"></script>
</body>
</html>