-2

I made a website with HMTL5, CSS3 and JavaScript. It works on Chrome and Spark but it doesn't work with a CSS file on Internet Explorer.

<!--[if IE]-->
<script src="http:html5shim.googlecode.com/suv/trunk/html5.js"></script>
<![endif-]-->

I did try other ways, but all of them fail.

Emile Bergeron
  • 17,074
  • 5
  • 83
  • 129

1 Answers1

1

Please format src attribute value properly like this.

<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
Umang Patwa
  • 2,795
  • 3
  • 32
  • 41