Last active
January 19, 2016 20:51
-
-
Save rugor/c1f792bbea3c378b486d to your computer and use it in GitHub Desktop.
HTML: Boilerplate index.html #rugor #st
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"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="icon" href="favicon.ico"> | |
<title>Foo</title> | |
<!-- CSS --> | |
<link href="css/style.css" rel="stylesheet"> | |
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> | |
<!--[if lt IE 9]> | |
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | |
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |
<![endif]--> | |
</head> | |
<body> | |
<section> | |
<h1>Foo</h1> | |
<p>bar</p> | |
</section> | |
<!-- JavaScript | |
================================================== --> | |
<!-- Placed at the end of the document so the pages load faster --> | |
<!-- <script src="bower_components/jquery/dist/jquery.min.js"></script> --> | |
<script type="text/javascript"> | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment