Skip to content

Instantly share code, notes, and snippets.

@drunkensouljah
Created December 6, 2020 02:04
Show Gist options
  • Select an option

  • Save drunkensouljah/5c6434e61c7137f64ef61bf88b12c6e3 to your computer and use it in GitHub Desktop.

Select an option

Save drunkensouljah/5c6434e61c7137f64ef61bf88b12c6e3 to your computer and use it in GitHub Desktop.
HTML Skeleton
<!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