cartas.html 508 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<!DOCTYPE html>
<html>
	<head>
	<meta charset="UTF-8">
	<title>Insert title here</title>
	</head>
	<body>
		<h1>Cartas de Poker</h1>
		<hr>
		<form action="/jweb-e001/dibujo_carta" method="get">
			
			Palo: <select name="palo">
									<option value="s">S</option>
									<option value="h">H</option>
									<option value="c">C</option>
									<option value="d">D</option>			
								</select>
			<br>
			
			Valor: <input type="text" name="valor">
			<input type="submit">
		</form>
	</body>
</html>