Programación Web y Scripting > HTML
PROBLEMAS CON MOZILLA
(1/1)
orionrods:
Tengo el siguiente codigo y no lo puedo visualiza con mozilla.
<HTML>
<HEAD>
<TITLE>otras figuras</TITLE>
<HEAD>
<BODY>
<BGSOUND SRC="Espiritual.MP3" LOOP=-1>
<WIDTH=200 HEIGHT=55 AUTOSTART="true" LOOP="false" HIDDEN="true">
</BGSOUND>
<FONT COLOR="black"><BODY BGCOLOR="black"><FONT FACE="PAPYRUS">
<table align="TOP" width="100%" border=1 frame="box" rules="all" cellspacing=2 cellpadding=2>
<tr>
<td><IMG SRC="Img8.jpg" WIDTH="380" HEIGHT="300" Border="8"></td>
<td><BLOCKQUOTE><h2><FONT COLOR="white">Oveja con árbol en encastre y al a derecha dos colibríes en piezas y encastre.</BLOCKQUOTE></td>
<td><IMG SRC="colibries.jpg" WIDTH="250" HEIGHT="300" Border="8"></td>
</tr>
</table>
<table align="TOP" width="100%" border=1 frame="box" rules="all" cellspacing=2 cellpadding=2>
<tr>
<td><IMG SRC="Img15.jpg" WIDTH="300" HEIGHT="250" Border="8"></td>
<td><BLOCKQUOTE><h2><FONT COLOR="white">A la izquierda par de libélulas y a la derecha pinguinos en encastre.</BLOCKQUOTE></td>
<td><IMG SRC="Img17.jpg" WIDTH="350" HEIGHT="250" Border="8"></td>
</tr>
</table>
<table align="TOP" width="100%" border=1 frame="box" rules="all" cellspacing=2 cellpadding=2>
<tr>
<td><IMG SRC="peces1.jpg" WIDTH="250" HEIGHT="250" Border="8"></td>
<td><BLOCKQUOTE><h2><FONT COLOR="white">Móviles de peces en encastre.</BLOCKQUOTE></td>
<td><IMG SRC="peces2.jpg" WIDTH="270" HEIGHT="250" Border="8"></td>
<td><IMG SRC="peces3.jpg" WIDTH="200" HEIGHT="250" Border="8"></td>
</tr>
</table>
<table align="TOP" width="100%" border=1 frame="box" rules="all" cellspacing=2 cellpadding=2>
<tr>
<td><BLOCKQUOTE><h2><FONT COLOR="white">Conjunto de gatos variados.</BLOCKQUOTE></td>
<td><IMG SRC="Imagen8.jpg" WIDTH="720" HEIGHT="300" Border="8"></td>
</tr>
</table>
<table align="TOP" width="100%" border=1 frame="box" rules="all" cellspacing=2 cellpadding=2>
<tr>
<td><IMG SRC="pesebre.jpg" WIDTH="500" HEIGHT="350" Border="8"></td>
<td><BLOCKQUOTE><h2><FONT COLOR="white">Puedes armar tu pesebre con las figuras que escojas.</BLOCKQUOTE></td>
</tr>
</table>
<table align="TOP" width="100%" border=1 frame="box" rules="all" cellspacing=2 cellpadding=2>
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="8">
<tr bgcolor="Black">
<td><A HREF="figurasenmadera.htm" TARGET="_parent"><CENTER><span onMouseOver = "this.style.color = '#FF0000';"
onMouseOut = "this.style.color = 'BLUE';"> VOLVER </SPAN></CENTER></A>
</td>
</tr>
</table>
</td>
<td><BLOCKQUOTE><BR><FONT COLOR="white"><center><H1><B> PEDIDOS - 300 6538116 - Rodrigo Sánchez V. <br>
email: orionrods@gmail.com</U></P></span></FONT></B></H1></center>
</BLOCKQUOTE></td>
</tr>
</table>
</font></h2>
</BODY>
</HTML>
fonsi3:
No te costaba nada poner el codigo dentro los tags [code=html]...[/html]
jodijo5:
algunas sugerencias, y luego te digo lo que fallaste:
1. las etiquetas y atributos nunca se ponen e mayusculas
2. siempre pon un doctype encima de la etiqueta html
3. revisa la compatibilidad de html5 porque la gran mayoria de etiquetas de html5 no son compatibles con ie8 y anteriores
4. los valores de los atributos siempre van entre comillas
ahora la solucion:
esto es lo que fallaste:
--- Código: HTML ---<BGSOUND SRC="Espiritual.MP3" LOOP=-1> <WIDTH=200 HEIGHT=55 AUTOSTART="true" LOOP="false" HIDDEN="true"> </BGSOUND>
--- Código: HTML ---<bgsound src="Espiritual.MP3" width="200" height=55 autostart="true" loop="false" hidden="true"> </bgsound>
saludos
Navegación
Ir a la versión completa