Last active
November 1, 2019 05:34
-
-
Save zulnabil/1cdc5feb274e1f415386e6bb3a442071 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 charset="UTF-8"/> | |
| <title>Personal Site PWA</title> | |
| <meta name="description" content="Personal Site PWA"/> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="css/materialize.min.css"> | |
| </head> | |
| <body> | |
| <nav class="teal lighten-1" role="navigation"> | |
| <div class="nav-wrapper container"> | |
| <a href="#" class="brand-logo" id="logo-container">My PWA</a> | |
| <a href="#" class="sidenav-trigger" data-target="nav-mobile">☰</a> | |
| <ul class="topnav right hide-on-med-and-down"></ul> | |
| <ul class="sidenav" id="nav-mobile"></ul> | |
| </div> | |
| </nav> | |
| <div class="container" id="body-content"></div> | |
| <script src="js/materialize.min.js"></script> | |
| <script src="js/nav.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment