Last active
August 13, 2021 02:02
-
-
Save frankyonnetti/1891796c3637d20c4bd49cb372cbeffe to your computer and use it in GitHub Desktop.
HTML5 - template #html #template
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> | |
| <title>Untitled</title> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <meta name="description" content=""> | |
| <!-- favicon --> | |
| <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"> | |
| <!-- apple touch icon --> | |
| <link rel="apple-touch-icon" href="/apple-touch-icon.png"> | |
| <!-- Tile icon for Win8 (144x144 + tile color) --> | |
| <meta name="msapplication-TileImage" content="/apple-touch-icon.png"> | |
| <meta name="msapplication-TileColor" content="#1b6eae"> | |
| <!-- https://github.com/sindresorhus/modern-normalize/releases --> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.0.0/modern-normalize.min.css"> | |
| <!-- inline style --> | |
| <style> | |
| body { | |
| background: #fff; | |
| margin: 0; | |
| } | |
| img { | |
| vertical-align: bottom; /* removes bottom gap */ | |
| } | |
| </style> | |
| <!-- linked styles --> | |
| <link rel="stylesheet" href="/css/styles.css"> | |
| </head> | |
| <body> | |
| <!-- javascripts --> | |
| <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script> | |
| <script> | |
| $(document).ready(function () { | |
| // do something... | |
| }) | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment