-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
39 lines (33 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock - Paper - Scissor</title>
<link rel="icon" type="image/png" href="images/favicon.png" />
<link href="https://fonts.googleapis.com/css2?family=MuseoModerno:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="playground">
<div class="dashboard">
<p class="dashboard__score">YOU: <span id="user"></span></p>
<P class="dashboard__score">PC: <span id="pc"></span></P>
</div>
<h2 class="playground__title">READY TO PLAY?</h2>
<div class="playground__container">
<p>Choose your option</p>
<div class="playground__container--items">
<input type="button" class="button" value="Rock" id="rock" data-opcion="rock">
<input type="button" class="button" value="Paper" id="paper" data-opcion="paper">
<input type="button" class="button" value="Scissors" id="scissors" data-opcion="scissors"><br>
</div>
</div>
</section>
<footer class="footer">
Made with love by lakhani Ji
</footer>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="game.js"></script>
</body>
</html>