-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.31 KB
/
Copy pathindex.html
File metadata and controls
32 lines (29 loc) · 1.31 KB
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
<!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 Tijeras</title>
<link rel="stylesheet" href="PPT.css">
<link href="https://fonts.cdnfonts.com/css/arco" rel="stylesheet">
<link href="https://fonts.cdnfonts.com/css/blood-crow" rel="stylesheet">
<script src="https://kit.fontawesome.com/7881bda97f.js" crossorigin="anonymous"></script>
<link rel="website icon" href="https://i.pinimg.com/236x/7f/1c/62/7f1c626d8badb3912b40c22931062697.jpg">
</head>
<body>
<div class="container">
<h1>Piedra, <span class="paper">Papel</span> <span class="scissors">o Tijeras</span></h1>
<div class="choices"><button id="piedra"><i class="fa-regular fa-hand-back-fist"></i></button><button
id="papel"><i class="fa-regular fa-hand"></i></button><button id="tijeras"><i
class="fa-regular fa-hand-scissors"></i></button></div>
<div class="result">
<p id="resultado">¡Haz tu elección!</p>
</div>
<div class="scoreboard">
<p>Jugador: <span id="player-score">0</span></p>
<p>Computadora: <span id="computer-score">0</span></p>
</div>
</div>
<script src="PPT.JS"></script>
</body>
</html>