Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Created March 29, 2018 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidPeralvarez/370ef45d7a77ecf43a4918f5389fba2e to your computer and use it in GitHub Desktop.
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
<!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