Html-Cambiar la letra en una tabla con lista ordenada?

Este es mi codigo:
<table align=center background="bob_archivos/discos-fondo.jpg" border=0 cellpadding=0 cellspacing=0 width=900 height=5200>
<tr>
<td widht=50></td>
<td aling=center><b> The Wailing Wailers (1965)</b></td>
</tr>
<tr>
</tr>
<tr>
<td widht=50></td>
<td background="bob_archivos/the_wailing_wailers.jpg" width=250 height=264></td>
<td> <ol>
********** A partir de aqui quiero cambiar la letra, el color y el tamaño**********
<li> "(I Am Gonna) Put It On"
<li> "I Need You So"
<li> "Lonesome Feeling"
<li> "What's New Pussycat"
<li> "One Love"
<li> "When The Well Runs Dry"
<li> "Ten Commandments Of Love"
<li> "Rude Boy"
<li> "It Hurts To Be Alone"
<li> "Love and Affection"
<li> "I'm Still Wainting"
<li> "Simmer Down"
********** Hasta aqui **********
</ol>
</td>
</tr>
</table>
De antemano mil gracias por su ayuda.

1 respuesta

Respuesta
1
Solo necesitas dos lineas; asi quedaria el codigo...
<table align=center background="bob_archivos/discos-fondo.jpg" border=0 cellpadding=0 cellspacing=0 width=900 height=5200>
<tr>
<td widht=50></td>
<td aling=center><b> The Wailing Wailers (1965)</b></td>
</tr>
<tr>
</tr>
<tr>
<td widht=50></td>
<td background="bob_archivos/the_wailing_wailers.jpg" width=250 height=264></td>
<td> <ol>
********** A partir de aqui quiero cambiar la letra, el color y el tamaño**********
<span style="font-weight: bold;"><font color=green face=Arial size=4></span>
<li> "(I Am Gonna) Put It On"
<li> "I Need You So"
<li> "Lonesome Feeling"
<li> "What's New Pussycat"
<li> "One Love"
<li> "When The Well Runs Dry"
<li> "Ten Commandments Of Love"
<li> "Rude Boy"
<li> "It Hurts To Be Alone"
<li> "Love and Affection"
<li> "I'm Still Wainting"
<li> "Simmer Down"
<span style="font-weight: bold;"></font></span>
********** Hasta aqui **********
</ol>
</td>
</tr>
</table>
En contacto,
Fernando.

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas