Snippets
Simple HTML starting point:
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<!--[if lte IE 9]>
<div class="browser-warning">You’re using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</div>
<![endif]-->
<h1>Hello World</h1>
</body>
</html>
Resources
- HTML5 Boilerplate
- Everything that can be in the
<head>
: https://github.com/joshbuchea/HEAD