cartas.html 877 Bytes
Newer Older
roshka committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title>Obten tu carta de poker</title>
</head>
	<body>
		<h1>Ingrese el palo y el valor de la carta</h1>
		<form action="dibujo_carta" method="get">
			<label for="palo_carta">Palo: </label>
			<input type="text" id="palo_carta" name="P0"><br><br>
			<label for="valor_carta">Valor: </label>
			<input type="text" id="valor_carta" name="P1"><br><br>
			<input type="submit" value="Obtener carta">
		</form>
		<p>
			Palos posibles:<br>
			* S : Picas (Spades)<br>
			* H : Corazones (Hearts)<br>
			* C : Treboles (Clubs)<br>
			* D : Diamante (Diamonds)
		</p>
		<p>
			Valores posibles: 1 al 13.<br>
			* 1 equivale al As <br>
			* 11 equivale al J <br>
			* 12 equivale al Q <br>
			* 13 equivales al K
		</p><br><br>
		<a href="http://localhost:8080/_jweb-e001/index.html">Volver al menu principal</a>
	</body>
</html>