user1429586
user1429586

Reputation: 45

Why won't my website show up in Internet Explorer?

Can someone look at my site on IE and look at my code through view source and let me know what I am doing wrong.

My site shows up on Firefox, but only shows my pink background in IE all my content is missing. I spoke to my hosting company and they think its comparability issue but their are reasons I don't believe that.

  1. My site was up and running 40 minutes before I changed the text size and a few images.
  2. I haven't changed any major coding that I know of to make my website a compatability issue.

Its a basic website but I need my site to run in IE. I would put my code up here but its too long. Also when I look at my website through Dreamweaver preview it also only shows me the pink background in IE.

Upvotes: 0

Views: 1491

Answers (1)

Anirudh Ramanathan
Anirudh Ramanathan

Reputation: 46738

You opened an html comment under the script tag but never closed it.

<style type="text/css">
<!--

Close it as follows:

 -->
</script>

Upvotes: 6

Related Questions