Created
February 10, 2022 02:13
-
-
Save LiorB-D/4a9be58f37d1ca3a7ded7a3c84f0aef1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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