-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (45 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="css/index.css">
<script type="text/javascript" src="js/script.js"> </script>
</head>
<body class="fondo">
<center><h2 class="texto">Piedra Papel o Tijera</h2></center>
<center>
<table>
<tr>
<td>
<span class="compu">COMPUTADORA: </span>
<div>
<input type="text" name="jugada_computadora" disabled id="jugadaComputadora">
</div>
</td>
</tr>
<tr>
<td>
<span class="compu">USUARIO:</span>
<div>
<input type="text" name="jugada del Usuario" id="jugadaUsuario">
</div>
</tr>
<tr>
<td>
<span class="compu">RESULTADO:</span>
<div>
<input type="text" name="resultado" disabled id="resultado">
</div>
</td>
</tr>
<tr>
<td>
<input class="boton" type="button" name="jugar" value="Jugar" onclick="evaluarJuego()">
<input class="boton" type="button" name="volverAJugar" value="Volver a Jugar" onclick="volverAJugar()">
</td>
</tr>
</table>
</center>
</body>
</html>