Last active
September 17, 2021 09:56
-
-
Save alexedwards/cae95e25f3d0e84fa0d4bb6001e3d750 to your computer and use it in GitHub Desktop.
HTML skeleton
This file contains 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"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Your Page Title</title> | |
<meta name="description" content="Brief description"> | |
<meta name="author" content="Your name"> | |
<meta property="og:title" content="Your Page Title"> | |
<meta property="og:type" content="website|article"> | |
<meta property="og:url" content="URL"> | |
<meta property="og:description" content="Brief description"> | |
<meta property="og:image" content="URL"> | |
<meta name="twitter:card" content="summary"> | |
<meta name="twitter:creator" content="@ajmedwards"> | |
<meta name="theme-color" content="#283c46"> | |
<link rel="icon" type="image/svg+xml" href="/favicon.svg"> | |
<link href="style.css" rel="stylesheet"> | |
</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