Created
March 29, 2018 13:10
-
-
Save DavidPeralvarez/370ef45d7a77ecf43a4918f5389fba2e to your computer and use it in GitHub Desktop.
Cómo hacer que Internet Explorer 6, 7 y 8 sea compatible con HTML5
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> | |
<head> | |
<meta charset="utf-8"> | |
<title>HTML5 compatible con IE 6,7 y 8</title> | |
<!--[if lt IE 9]> | |
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
</head> | |
<body> | |
<header> | |
<h1>Hooooooola</h1> | |
<!-- HOLA --> | |
</header> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment