tags:

views:

20

answers:

1

The following page will not display in ie. http://dl.dropbox.com/u/6957663/muchWorth.html

I believe it has to do with the javasscript I implemented but I'm not sure.

Is there some file encoding I am missing?

I am on ubuntu linux in gedit.

+5  A: 

The <title> tag is not closed properly in the header. You used </h1>.

While we're looking at the code, you may also want to use

  • <style type='text/css'>
  • <script type='text/javscript'>

to clarify those elements of the HTML.

// EDIT

Incidentally, to find this diagnosis quickly, I

  • Commented out all Javascript, didn't work
  • Commented out all CSS, didn't work
  • Started at the top looking for strange-ness, and there it was.

I'd recommend doing that next time this comes up. :)

Steve
Thank you so much!! This was driving me crazy. I am just waiting for the timer to let me accept.
Lime
No worries mate.
Steve