Skip to content

Instantly share code, notes, and snippets.

@4lun
Last active October 13, 2015 22:58
Show Gist options
  • Save 4lun/4268801 to your computer and use it in GitHub Desktop.
Save 4lun/4268801 to your computer and use it in GitHub Desktop.
HTML Starting Point
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<title>Project</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge;chrome=1">
<meta name="viewport" content="width=device-width">
<meta name="apple-mobile-web-app-capable" content="yes">
<script>
(function() {
var html = document.documentElement;
html.className = html.className.replace('no-js','js');
})();
</script>
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
<div class="wrapper">
</div>
<script src="/assets/js/script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment