Created
July 28, 2019 02:47
-
-
Save kimuradev/540128dd6a61eaf9b06dc9821682523a to your computer and use it in GitHub Desktop.
PWA Medium - index with main js
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="stylesheet" href="css/style.css" /> | |
<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