Created
January 21, 2013 19:28
-
-
Save crh/4588562 to your computer and use it in GitHub Desktop.
DDB index.html
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 lte IE 7 ]> <html class="ie7"> <![endif]--> | |
<!--[if IE 8 ]> <html class="ie8"> <![endif]--> | |
<!--[if IE 9 ]> <html class="ie9"> <![endif]--> | |
<!--[if (gt IE 9)|!(IE)]><!--> <html> <!--<![endif]--> | |
<head> | |
<title> | |
Home Page | |
- | |
Deutsche Digitale Bibliothek | |
</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta name="description" content="Deutsche Digitale Bibliothek" /> | |
<link rel="stylesheet" href="Content/themes/base/styles/ddb.min.css" media="screen" /> | |
<link rel="stylesheet" href="Content/themes/base/styles/ddbPrint.min.css" media="print" /> | |
<link rel="search" title="Deutsche Digitale Bibliothek" href="http://www.deutsche-digitale-bibliothek.de/opensearch.osdx" type="application/opensearchdescription+xml" /> | |
<!--[if lt IE 9]> | |
<script src="Scripts/html5shim.googlecode.html5.js"> </script> | |
<![endif]--> | |
</head> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Kind of confusing, but trying to summarize so I can understand it.
HTML5 new elements can be visible in IE browsers by using JS techniques. (http://ejohn.org/blog/html5-shiv/)
In case no js available, we have to draw back to conditional if statements.
So your suggestion Christian?