HTML - Forgive My Ignorance...
Hello,
I'm brand new to HTML. I am just dipping my toes with a project and keep getting the same problem. Can someone please help and tell me why the code (below) is inserting a white horizontal line between the coloured boxes. I realise this is really basic, but I'm about to jump out of the window - HELP! <?xml version="1.0" encoding="UTF - 8"?> <!DOCTYPE html PUBLIC " - //W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> </head> <title>Jon Mason Graphic Design</title> </head> <body> <tr> <table cellspacing="0" cellpadding="0"> <tr> <td> <img alt="" title="" src="http://i.min.us/ijCTdY.jpg" /> </td> </tr> <tr> <td> <img alt="" title="" src="http://i.min.us/jj7Yt6.jpg"/><img alt="" title="" src="http://i.min.us/ijCo96.jpg"/> </td> </tr> </table> </body> </html> Similar TutorialsENHANCED DROP DOWN MENU & CODING MISTAKES, WHICH ALL BROWSERS FORGIVE EXCEPT INTERNET EXPLORER 8 & 9. Hi Everybody , 1. I am trying to create a drop down menu, which by default opens a file in our website. (http://www.example1.com/folder1/example.pdf). 2. NEED HELP with MISTAKES, which ALL BROWSERS FORGIVE, except Internet Explorer 8 and 9. The following is an example of what we are trying to do: (but it looks like nobody knows the answer in all forums, which we have asked for help). ==================================================== <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head></head> <title></title> <body> <script type="text/javascript"> window.onload=function() { document.getElementById('NewsletterList').onchange=function() { window.location=('http://www.homeless-forum.org/'+this.value+''); } } </script> <br> <select id="NewsletterList"> <a target=\"_blank\" href=\"file.doc\" title=\"\">John Doe<br> XXXXXXXXXXX</br></a>. <option value=""><b> PLEASE SELECT<b/></option><!--this option takes you to --> <body mar="0" marginheight="0" bgcolor="rgb(38,38,38)"> "BACKGROUND BLUE GREEN MARMOL " <embed width="100%" height="100%" name="plugin" src="http://www.example.com/folder/file-example.pdf" type="application/pdf"> <option value=index.htm>Option #1</option><!--this option takes you to --> <option value="news2">Option #2</option><!--this option takes you to --> <option value="news3">Option #3 </option><!--this option takes you to --> <option value="news4"><br>Option #4</br></option><!--this option takes you to --> <option value="news5">Option #5</option><!--this option takes you to --> <option value="news6">Option #6</option><!--this option takes you to --> <option value="blog/wp-login.php"><!--this option takes you to blog--> <br/> </select> <html xmlns:v="urn:schemas-microsoft-com:vml" ............................................. ............................................. </body> </html> I will gladly help in Computer Repair or Engineering questions, but in html and programming, I am a beginner. Please Help! Thanks in advanced, MrInquisitive |