Created
March 17, 2013 19:12
-
-
Save laminr/5183118 to your computer and use it in GitHub Desktop.
Html page template
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> | |
| <!--[if lte IE 6]> <html class="no-js ie6 ie67 ie678" lang="fr"> <![endif]--> | |
| <!--[if IE 7]> <html class="no-js ie7 ie67 ie678" lang="fr"> <![endif]--> | |
| <!--[if IE 8]> <html class="no-js ie8 ie678" lang="fr"> <![endif]--> | |
| <!--[if gt IE 8]><!--> <html class="no-js" lang="fr"> <!--<![endif]--> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=10"> | |
| <title></title> | |
| <meta name="viewport" content="initial-scale=1.0"> | |
| <link rel="stylesheet" href="...." media="all"> | |
| <!-- JS --> | |
| <script type="text/javascript" src="..."></script> | |
| <!-- Modernize must be afrer css and before body--> | |
| <script type="text/javascript" src="js/modernizr.custom.js"></script> | |
| </head> | |
| <body> | |
| <!--[if lt IE 7]><p class=chromeframe>Your browser is <strong>ancient!</strong> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p><![endif]--> | |
| [...] | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment