-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (100 loc) · 3.17 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Piedra, papel o tijera</title>
<link rel="stylesheet" href="./css/main.css" />
<script
src="https://kit.fontawesome.com/d65782632e.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Patrick+Hand&family=Shadows+Into+Light&family=Vina+Sans&display=swap"
rel="stylesheet"
/>
</head>
<body>
<main class="main">
<div class="container">
<h1 class="title">Piedra, Papel y Tijera</h1>
<!-- <p class="subtitle">Introduce aquí tu jugada:</p> -->
<form action="">
<select class="js-select select">
<option>Seleccione su jugada</option>
<option value="rock">Piedra</option>
<option value="paper">Papel</option>
<option value="scissors">Tijera</option>
</select>
<button class="js-btn">Jugar</button>
</form>
<button class="js-btn-reset hidden">Volver a jugar</button>
<div>
<p class="result js-text-result">¡Vamos a Jugar!</p>
</div>
<section>
<div class="player">
<p class="player js-player">Jugador:</p>
<img
src="./images/papel.png"
alt=""
width="60rem"
class="js-imgPaper hidden"
/>
<img
src="./images/piedra.png"
alt=""
width="60rem"
class="js-imgRock hidden"
/>
<img
src="./images/tijera.png"
alt=""
width="60rem"
class="js-imgScissors hidden"
/>
</div>
<div class="player">
<p class="computer js-pc">Ordenador:</p>
<img
src="./images/papel.png"
alt=""
width="60rem"
class="js-imgPaperPC hidden"
/>
<img
src="./images/piedra.png"
alt=""
width="60rem"
class="js-imgRockPC hidden"
/>
<img
src="./images/tijera.png"
alt=""
width="60rem"
class="js-imgScissorsPC hidden"
/>
</div>
</section>
</div>
</main>
<footer>
<div class="copy">
<small>© crisrodriguezgar 2023</small>
<div>
<a
href="https://www.linkedin.com/in/cristinarodriguezgar"
target="_blank"
><i class="fa-brands fa-linkedin linkedin"></i
></a>
<a href="https://github.com/crisrodriguezgar" target="_blank"
><i class="fa-brands fa-github-alt git"></i
></a>
</div>
</div>
</footer>
<script src="./js/main.js"></script>
</body>
</html>