Last active
August 4, 2016 19:58
-
-
Save kocisov/58fd89416b5332674f7acd20f0bddb47 to your computer and use it in GitHub Desktop.
How to properly create HTML document
This file contains hidden or 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>Title</title> | |
<link rel="stylesheet" href="css files here"> | |
<script src="js files here"></script> | |
</head> | |
<body> | |
Body content here... | |
<div class="something"> | |
Something... | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment