issues

i'm getting these two errors from the validator, and on top of that I
can't even see my links selection box...I'm kind of new to programming
and this is kind of irking me off right now...any help would be very
much appreciated




   1.

      Line 44, column 8: end tag for element "SELECT" which is not open

      </select>

      The Validator found an end tag for the above element, but that
element is not currently open. This is often caused by a leftover end
tag from an element that was removed during editing, or by an
implicitly closed element (if you have an error related to an element
being used where it is not allowed, this is almost certainly the
case). In the latter case this error will disappear as soon as you fix
the original problem.

      If this error occured in a script section of your document, you
should probably read this FAQ entry.
   2.
      Line 45, column 6: end tag for element "FORM" which is not open

      </form>

Source Listing
(please not that this is my actual source code from my page)
Below is the source input I used for this validation:

 1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
 2:             "http://www.w3.org/TR/html4/strict.dtd">
 3: <html lang="en">
 4: <head>
 5: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 6: <meta name="Content-Script-Type" content="text/javascript">
 7: <title>For those interested in science and science fiction</title>
 8: <style type="text/css">
 9: <!--
10: body {background-color:#00a; color:#000}
11: h1, h5 {text-align: center}
12: hr {width: 40%; height: 5px;}
13: -->
14: </style>
15: </head>
16: <body>
17: <div style="text-align: left;">
18: <img src="radioactive.jpg" width="50" height="50" alt="radioactive">
19: </div>
20: <div style="text-align: right">
21: <img src="radioactive.jpg" width="50" height="50" alt="radioactive">
22: </div>
23: <h1> Science Space and Science Fiction</h1>
24: <hr>
25: <p>Hello...and welcome to my site.  I'm learning new items in
programming so
26: the site may change as often as every other day.  I'm glad you stopped by.  
27: On my site I'll talk about things that interest me in the science and space 
28: worlds. Which means I'll probably be talking about robots, quantum physics, 
29: Saturn's moon Titan, and creationism vs. evolutionism and whether or not 
30: there is common ground between them.  So once again, thanks for stopping by.
31:  I hope you enjoy everything I have to offer.</p>
32: <p>While this site is constantly changing, I encourage you to visits the 
33: links below.</p>
34: <script type="text/javascript">
35: <form name="links">
36: <select name="linkbox"
OnChange="window.open(links.linkbox.options[selectedIndex].value)"
37:      <option selected>Choose from the following...
38:      <option value="http://www.google.com/">Search Now
39:      <option value="http://www.getfirefox.com/">Firefox
40:      <option value="http://www.hpwt.de/Kerne.htm/"> Nuclear
Physics information
41:      <option value="http://www.sciencenews.org/">science news
42:      <option value="http://www.planetary.org/">the planetary society
43:      <option value="http://www.kci.org/">AntiMeth Site
44: </select>
45: </form>
46: </script>
47: <div style="text-align: left">
48: <img src="image11.jpg" width="300" height="300" alt="me and my daughter">
49: </div>
50: <p>Me and my daughter Draven</p>
51: <div style="text-align: left">
52: <img src="image12.jpg" height="350" width="300" alt="Kay and my mom">
53: </div>
54: <p>My beautiful fiance and my mother in our kitchen</p> 
55: <h5> Thanks for coming by</h5>
56: <hr>
57: </body>
58: </html>
      


-- 
For he gave unto the world his only son, that we might have eternal life.

Received on Monday, 9 May 2005 14:30:30 UTC