Last active
September 27, 2019 17:34
-
-
Save kimuradev/7b1434af4e872063e3047717d73e8e5a to your computer and use it in GitHub Desktop.
PWA Medium - index full
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 charset="utf-8" /> | |
<title>Vanilla PWA</title> | |
<link rel="manifest" href="/manifest.json" /> | |
<link rel="stylesheet" href="css/style.css" /> | |
<link rel="icon" href="favicon.ico" type="image/x-icon" /> | |
<link rel="apple-touch-icon" href="images/icon/icon-152x152.png" /> | |
<meta name="theme-color" content="white" /> | |
<meta | |
name="Description" | |
content="Author: Kimura.L, Example of Vanilla PWA" | |
/> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | |
<meta name="apple-mobile-web-app-title" content="Vanilla PWA" /> | |
<meta | |
name="msapplication-TileImage" | |
content="images/icon/icon-144x144.png" | |
/> | |
<meta name="msapplication-TileColor" content="#FFFFFF" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
</head> | |
<body> | |
<div class="flex-container"> | |
<div class="row"> | |
<div class="flex-item"> | |
<h1>Vanilla PWA</h1> | |
</div> | |
</div> | |
</div> | |
<script src="js/main.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment