Skip to content

Instantly share code, notes, and snippets.

@alexedwards
Last active September 17, 2021 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexedwards/cae95e25f3d0e84fa0d4bb6001e3d750 to your computer and use it in GitHub Desktop.
Save alexedwards/cae95e25f3d0e84fa0d4bb6001e3d750 to your computer and use it in GitHub Desktop.
HTML skeleton
<!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