Last active
November 11, 2020 14:53
-
-
Save jessegilbride/c422f7ff733b03abc4ec1cac18dfd905 to your computer and use it in GitHub Desktop.
My current (2020) HTML boilerplate
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> | |
<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