Skip to content

Instantly share code, notes, and snippets.

@bertday
Created March 31, 2020 07:46
Show Gist options
  • Save bertday/393cf512db0e0d4f543e98edd01d6653 to your computer and use it in GitHub Desktop.
Save bertday/393cf512db0e0d4f543e98edd01d6653 to your computer and use it in GitHub Desktop.
Minimal HTML Boilerplate w/Normalize.css
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>I'm the title</title>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
</head>
<body>
<p>I'm the content</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment