Exámenes - Mini brisca

En este ejercicio se debe crear un programa que muestre una jugada del juego de cartas clásico Brisca de dos jugadores e indique el ganador.

Mini brisca - Comentarios

Mini brisca - Ejemplo de código HTML

  <table>
    <tr>
      <th>Jugador 1</th>
      <th>Palo de triunfo</th>
      <th>Jugador 2</th>
    </tr>
    <tr>
      <td><img src="img/d4.svg" alt="d4" height="200"></td>
      <td style="text-align: center"><span style="font-size: 800%">&#9829;</span></td>
      <td><img src="img/d8.svg" alt="d8" height="200"></td>
    </tr>
  </table>

  <p>Ha ganado el jugador 2.</p>