-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.78 KB
/
Copy pathindex.html
File metadata and controls
40 lines (37 loc) · 1.78 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PWA-Test</title>
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<header>
<div class="container text-center">
<style>
.jumbotron {
width: 700px;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
}
</style>
</header>
<main>
<div class="jumbotron">
<h1 class="display-4">PWA-Testwebsite</h1>
<p class="lead">This is a Progressive Web App Testwebsite with a cached service worker. This website is installable! Check it out.</p>
<hr class="my-4">
<p>If you want to learn more about PWAs just start searching in the internet or check out the link below on youtube from google:</p>
<a class="btn btn-primary btn-lg" href="https://www.youtube.com/user/ChromeDevelopers/playlists?view=50&sort=dd&shelf_id=21" role="button">Learn more about PWAs</a>
</div>
</main>
<footer>
</footer>
<script type="text/javascript" src="app.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>