-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
  • 16,148
  • 4
  • 74
  • 121

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,477
  • 3
  • 26
  • 39