-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (38 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Piedra,papel o tijera</title>
</head>
<body>
<div id="contenido">
<header>
<h1>Piedra, Papel o Tijera</h1>
</header>
<main>
<p>Tres (3) puntos para ganar</p>
<ul id="marcador">
<li><h2 id="ronda">Ronda 0</h2></li>
<li><h2 id="puntosUsuario">Puntos Usuario: 0</h2></li>
<li><h2 id="puntosPC">Puntos Maquina: 0</h2></li>
</ul>
<article id="bloqueUsuario">
<h2 id="usuario">Usuario:</h2>
</article>
<article id="bloquePC">
<h2 id="pc">Maquina:</h2>
</article>
<button class= "botones-accion" id="btnPiedra">Piedra</button>
<button class= "botones-accion" id="btnPapel">Papel</button>
<button class= "botones-accion" id="btnTijera">Tijera</button>
<button id="btnVolverJugar">Volver a jugar</button><br>
<div id="ganador"></div>
</main>
<footer>© Eddie Casanas 2023</footer>
</div>
<script src="index.js"></script>
</body>
</html>