Last active
December 31, 2020 16:32
-
-
Save rebelchris/f13c5acc2c5a833042137540b63b7633 to your computer and use it in GitHub Desktop.
Daily Dev Tips HTML5 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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Daily Dev Tips Boilerplate</title> | |
<meta name="description" content="Basic HTML boilerplate"> | |
<meta name="author" content="Daily Dev Tips"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body> | |
<!-- Your content goes here --> | |
<script src="js/main.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
More information on this boilerplate: https://daily-dev-tips.com/posts/html5-starting-boilerplate-template/