Skip to content

Instantly share code, notes, and snippets.

@LiorB-D
Created February 10, 2022 02:13
Show Gist options
  • Select an option

  • Save LiorB-D/4a9be58f37d1ca3a7ded7a3c84f0aef1 to your computer and use it in GitHub Desktop.

Select an option

Save LiorB-D/4a9be58f37d1ca3a7ded7a3c84f0aef1 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags for Responsive Design -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Simple PWA Hello World</title>
<!-- Meta Tags for Progressive Web App -->
<meta name="apple-mobile-web-app-status-bar" content="#aa7700">
<meta name="theme-color" content="black">
<!-- Link to the Manifest File -->
<link rel="manifest" href="manifest.json">
<!-- Styling -->
<style>
h1 {text-align: center; color: rgb(9, 0, 128);}
p {text-align: center; font-family: sans-serif;}
</style>
</head>
<body>
<h1>Hello World</h1>
<p>
This is a Progressive Web Application
</p>
<!-- Link to the Service Worker -->
<script src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment