Skip to content

Instantly share code, notes, and snippets.

@jessegilbride
Last active November 11, 2020 14:53
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 jessegilbride/c422f7ff733b03abc4ec1cac18dfd905 to your computer and use it in GitHub Desktop.
Save jessegilbride/c422f7ff733b03abc4ec1cac18dfd905 to your computer and use it in GitHub Desktop.
My current (2020) HTML boilerplate
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1">
<meta name="description" content="">
<title>Page Title</title>
<!-- CSS reset -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" rel="stylesheet">
<!-- custom styles -->
<link href="style.css" rel="stylesheet">
<!-- cloud-hosted fonts -->
<link href="" rel="stylesheet">
</head>
<body>
<!-- HTML goes here. -->
<script src="https://code.jquery.com/jquery.min.js"></script>
<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