-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
102 lines (101 loc) · 4.32 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<head>
<title> Siete y medio </title>
<link href="imagenes/favicon.png" rel="shortcut icon" type="image/x-icon">
<link rel="stylesheet" href="estilo/boton.css" type="text/css">
<link rel="stylesheet" href="estilo/textos.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<script src="sieteymedio.js"></script>
</head>
<body OnLoad="sieteymedio();" bgcolor="#088A08">
<font face="arial">
<center>
<br /><img src="imagenes/titulo.png" />
<form name="Juego">
<input class="instrucciones btn" target="_blank" type="button" value="Instrucciones" onClick="window.open('http://es.wikipedia.org/wiki/Siete_y_media')"/>
<a class="twitter" href="https://twitter.com/glaseca" target="_blank"><img src="imagenes/twitter.jpg" height="80px" width="80px"></a>
<!--
<table bgcolor="#c0c0c0" border="1" cellspacing="0" cellpadding="3">
<tr>
<td><center>Puntuaci�n:</center></td>
<td><center>Banca</center></td>
<td><center><input type=text name="banca" size="2"></center></td>
<td><center>Carta: <input type=text name="texto1" size="18" value="" readonly="readonly"></center></td>
</tr>
<tr>
<td><center><input type=text name="victorias" size="3" value="0" readonly="readonly"></center></td>
<td id="NombreJugador"><center>Jugador</center></td>
<td><center><input type=text name="jugador" size="2"></center></td>
<td><center>Carta: <input type=text name="texto2" size="18" value="" readonly="readonly"></center></td>
</tr>
<tr>
<td><center><input type=button value="Empezar" onClick="nueva_mano(this.form)"></center></td>
<td colspan=3>
<center>
<input type=button value="Plantarse" onClick="juega_banca(this.form);busca_ganador(this.form);" />
<input type=button value="Una carta m�s" onClick="juega_jugador(this.form);" />
</center>
</td>
</tr>
</table>
-->
<table bgcolor="c0c0c0" border="1" cellspacing="0" cellpadding="0" width="665px" bordercolor="#DEA147">
<tr>
<td align="center">
<table border="0" cellspacing="0" cellpadding="0" width="665px">
<tr>
<td align="center">
<br />
<input class="btn" type="button" value="Empezar" onClick="nueva_mano(this.form)" />
<label> Puntuación </label>
<input style="background-color:#c0c0c0;text-align:center;" type="text" name="victorias" size="3" value="0" readonly="readonly" background="#c0c0c0" />
<hr>
<br/>
</td>
</tr>
<tr>
<td align="right">
<table border="0" cellspacing="0" cellpadding="3" width="665px">
<tr>
<th width="30%"><label>Banca</label></th>
<th><input style="text-align:center;" readonly="readonly"type="text" name="banca" size="2" /></td></th>
<th width="70%"><label>Carta:</label>
<input style="text-align:center;margin-left:30px;" type="text" name="texto1" size="18" value="" readonly="readonly" /></th>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right"> </td>
</tr>
<tr>
<td align="right">
<table border="0" cellspacing="0" cellpadding="3" width="665px">
<tr>
<th id="NombreJugador" width="30%"><label>Jugador</label></th>
<th><input style="text-align:center;" readonly="readonly" type="text" name="jugador" size="2" /></th>
<th width="70%"><label>Carta:</label>
<input style="text-align:center;margin-left:30px;" type="text" name="texto2" size="18" value="" readonly="readonly" /></th>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<br />
<input class="btn" type="button" value="Plantarse" onClick="juega_banca(this.form);busca_ganador(this.form);" />
<input style="margin-left:30px;" class="btn" type="button" value="Una carta más" onClick="juega_jugador(this.form);" />
</td>
</tr>
<tr>
<td align="right"> </td>
</tr>
</table>
</td>
</table>
</form>
<img src="imagenes/baraja.png" />
<br />
<label style="color: white;">2012 © glaseca | Todos los derechos reservados.</label>
</center>
</font>
</body>