Skip to content

Instantly share code, notes, and snippets.

@kocisov
Last active August 4, 2016 19:58
Show Gist options
  • Save kocisov/58fd89416b5332674f7acd20f0bddb47 to your computer and use it in GitHub Desktop.
Save kocisov/58fd89416b5332674f7acd20f0bddb47 to your computer and use it in GitHub Desktop.
How to properly create HTML document
<!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