Created
June 13, 2012 08:40
-
-
Save kimmel/2922824 to your computer and use it in GitHub Desktop.
basic html5 page with a css framework
This file contains 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> | |
<!--[if lt IE 7 ]> <html lang="en-us" class="no-js ie6"> <![endif]--> | |
<!--[if IE 7 ]> <html lang="en-us" class="no-js ie7"> <![endif]--> | |
<!--[if IE 8 ]> <html lang="en-us" class="no-js ie8"> <![endif]--> | |
<!--[if IE 9 ]> <html lang="en-us" class="no-js ie9"> <![endif]--> | |
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en-us" class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" href="css/columnal.css" type="text/css" media="screen" /> | |
<!-- Fixes for IE --> | |
<!--[if lt IE 9]> | |
<link rel="stylesheet" href="css/ie.css" type="text/css" media="screen" /> | |
<![endif]--> | |
<!--[if lte IE 7]> | |
<link rel="stylesheet" href="css/fixed-984px-ie.css" type="text/css" media="screen" /> | |
<![endif]--> | |
<!--[if lte IE 6]> | |
<link rel="stylesheet" href="css/ie6-984px.css" type="text/css" media="screen" /> | |
<![endif]--> | |
<!-- End fixes for IE --> | |
<link rel="stylesheet" href="css/custom.css" type="text/css" media="screen" /> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment