• Asignatura: Informática
  • Autor: eduardo2403rm
  • hace 2 años

código fuente de html pls, si hacen el código fuente les doy corona ​

Adjuntos:

Respuestas

Respuesta dada por: metcashew154351
3

Respuesta: listo ya es solo copiarlo y pegarlo en un archivo nuevo y lo guardes con extensión .hmtl y poner un url para la imagen de la tabla

<style>

   table, th, td {

 border: 3px solid black;

 border-collapse: collapse;

}

</style>

<html>

<head>

   <title>Actividad 2:</title>

</head>

<body>

   <!-- Primera tabla -->

<table width="100px" height="150px">

    <tr>

        <td bgcolor="red"></td>

        <td bgcolor="orange"></td>

    </tr>

    <tr>

       <td bgcolor="purple"></td>

       <td bgcolor="yellow"></td>

    </tr>

    <tr>

       <td bgcolor="blue"></td>

       <td bgcolor="green"></td>

    </tr>

</table>   <br><br><br><br><br>

   <!-- Segunda Tabla -->

<table width="100px" height="150px" style="background-image: url(  Aqui pones el url de la imagen  );">

   <tr>

       <td rowspan="3"></td>

       <td ></td>

       <td></td>

   </tr>

   <tr>

      <td></td>

      <td></td>

   </tr>

   <tr>

      <td></td>

      <td></td>

   </tr>

</table>   <br><br><br><br><br>

   <!-- Tercera tabla -->

<table width="100px" height="150px" bgcolor="red">

   <tr>

       <td></td>

       <td colspan="2"></td>

   </tr>

   <tr>

       <td></td>

      <td></td>

      <td></td>

   </tr>

   <tr>

      <td colspan="2"></td>

      <td></td>

   </tr>

</table>    

</body>

</html>


eduardo2403rm: gracias Bro, deja veo como doy la corona
Preguntas similares