I have to make a website as a first project in my web class. I do not have the right to use CSS (I haven't seen it yet anyways). The site is in french (the language we speak in my city.) So here's the problem: I made a table as the layout of the whole site. Every pages have the same table. There are menu buttons (which are in the table) on the left side of the website. Here's the code for one of the tables:
CODE
<table>
<tr>
<td width="100" height="50" valign="top"><a href="../Accueil.htm"><img src="../Images/Accueil.png"></a></td>
<td rowspan="4" width="900" align="center" valign="top">
<!-- Source= Google -->
<p><img src="../Images/WOPD.jpg" width="500" height="500"></p>
<font size="+3">Winds Of Plague</font>
<hr>
<!-- Source = Google -->
<img src="../Images/WOPband.jpg" align="left">
<p>Le groupe <b>Winds Of Plague</b> a été formé en 2002 mais la parution de leur premier album s'est fait en 2005.Ils ont vraiment connu leur popularité avec l'album <b>Decimate The Weak</b>, paru en 2008. La chanson du même nom, est leur oeuvre la plus connue. Ils ont aussi tout récemment sorti l'album <b>The Great Stone War</b> qui est beacoup plus mélodique que les deux autres albums. L' album est en fait un album concepte, racontant l'histoire de la fin de la civilisation, se terminant par un combat ultime. Un des faits frappants du groupe est que l' un des membres est une femme. Certains affirment que cette dame est une bonne publicité pour le groupe car selon l'opinion de plusieurs, elle est très jolie.</p>
<hr>
<font size="+2">Extrait Musical de <b>Decimate The Weak</b></font>
<!-- Voir Le Dossier Music/playerSinglePackage pour la provenance -->
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashPlayer" align="right">
SVP, Activer le controle ActiveX</div>
<script type="text/javascript">
var so = new SWFObject("playerSingle.swf", "mymovie", "192", "67", "7", "#FFFFFF");
so.addVariable("autoPlay", "no");
so.addVariable("soundPath", "../Music/WOPEXTRAIT.mp3");
so.write("flashPlayer");
</script>
<!-- Fin du Lecteur de Musique -->
<br>
<br>
<hr>
<p><font size="+2" align="center">Membres du groupe</font>
<!-- Source = Site du groupe -->
<p><img src="../Images/WOPMembers1.jpg" align="center"><img src="../Images/WOPMembers2.jpg" align="center"></p>
<p>Dernière Mise-à-Jour le 7 Octobre 2009</p>
</td>
</tr>
<tr>
<td width="100" height="50" valign="top"><a href="../Liens.htm"><img src="../Images/Liens.png"></a></td>
</tr>
<tr>
<td width="100" height="50" valign="top"><a href="../Alphabetique.htm"><img src="../Images/Liste.png"></a></td>
</tr>
<tr>
<!-- Blank Cell -->
<td width="100"> </td>
</tr>
</table>
<tr>
<td width="100" height="50" valign="top"><a href="../Accueil.htm"><img src="../Images/Accueil.png"></a></td>
<td rowspan="4" width="900" align="center" valign="top">
<!-- Source= Google -->
<p><img src="../Images/WOPD.jpg" width="500" height="500"></p>
<font size="+3">Winds Of Plague</font>
<hr>
<!-- Source = Google -->
<img src="../Images/WOPband.jpg" align="left">
<p>Le groupe <b>Winds Of Plague</b> a été formé en 2002 mais la parution de leur premier album s'est fait en 2005.Ils ont vraiment connu leur popularité avec l'album <b>Decimate The Weak</b>, paru en 2008. La chanson du même nom, est leur oeuvre la plus connue. Ils ont aussi tout récemment sorti l'album <b>The Great Stone War</b> qui est beacoup plus mélodique que les deux autres albums. L' album est en fait un album concepte, racontant l'histoire de la fin de la civilisation, se terminant par un combat ultime. Un des faits frappants du groupe est que l' un des membres est une femme. Certains affirment que cette dame est une bonne publicité pour le groupe car selon l'opinion de plusieurs, elle est très jolie.</p>
<hr>
<font size="+2">Extrait Musical de <b>Decimate The Weak</b></font>
<!-- Voir Le Dossier Music/playerSinglePackage pour la provenance -->
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashPlayer" align="right">
SVP, Activer le controle ActiveX</div>
<script type="text/javascript">
var so = new SWFObject("playerSingle.swf", "mymovie", "192", "67", "7", "#FFFFFF");
so.addVariable("autoPlay", "no");
so.addVariable("soundPath", "../Music/WOPEXTRAIT.mp3");
so.write("flashPlayer");
</script>
<!-- Fin du Lecteur de Musique -->
<br>
<br>
<hr>
<p><font size="+2" align="center">Membres du groupe</font>
<!-- Source = Site du groupe -->
<p><img src="../Images/WOPMembers1.jpg" align="center"><img src="../Images/WOPMembers2.jpg" align="center"></p>
<p>Dernière Mise-à-Jour le 7 Octobre 2009</p>
</td>
</tr>
<tr>
<td width="100" height="50" valign="top"><a href="../Liens.htm"><img src="../Images/Liens.png"></a></td>
</tr>
<tr>
<td width="100" height="50" valign="top"><a href="../Alphabetique.htm"><img src="../Images/Liste.png"></a></td>
</tr>
<tr>
<!-- Blank Cell -->
<td width="100"> </td>
</tr>
</table>
In Firefox , everything looks fine but in IE, the menu buttons ( "Accueil.png" , "Liens.png" and "Liste.png" ) auto rezise themself even if I have specified a Height for the cell.
This creates unwanted space between each menu buttons and I'd like to fix it because the default browser at my school is Internet Explorer so the teacher will probably evaluate me using this browser. By the way, the teacher didn't show us DOCTYPE and stuff like that, I know I have to use it but I simply know nothing about it. She said the only thing we needed to put at the top of the page is
CODE
<!--Metas-->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Description" content="Accueil de North America Wreckords">
<meta name="Keywords" content="North America Wreckords, ">
<meta name="Author" content="Michaël Ferland">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Description" content="Accueil de North America Wreckords">
<meta name="Keywords" content="North America Wreckords, ">
<meta name="Author" content="Michaël Ferland">
Please tell me if you need more informations I am pretty new to the computer world so I might have forgotten something!
