Created
December 6, 2020 02:04
-
-
Save drunkensouljah/5c6434e61c7137f64ef61bf88b12c6e3 to your computer and use it in GitHub Desktop.
HTML Skeleton
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>Your Page Title</title> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <meta name="author" content="Your name"> | |
| <meta name="description" content="Brief description"> | |
| <meta property="og:title" content="Your Page Title"> | |
| <meta property="og:description" content="Brief description"> | |
| <meta property="og:image" content="/some-image.png"> | |
| <meta property="og:url" content="/this-page.html"> | |
| <meta property="og:site_name" content="Your Site Name"> | |
| <meta name="twitter:card" content="summary_large_image"> | |
| <meta name="twitter:image:alt" content="image description"> | |
| <link href="style.css" rel="stylesheet"> | |
| <link rel="icon" type="image/svg+xml" href="/favicon.svg"> | |
| </head> | |
| <body> | |
| <h1>Your content here!</h1> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment