forked from Grow-with-Open-Source/Javascript-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.28 KB
/
index.html
File metadata and controls
45 lines (41 loc) · 1.28 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Rock Paper Scissors Tutorial</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>ROCK PAPER SCISSORS GAME</nav>
<div class="choice-container">
<div>
<h2>
<img src="./public/computer.png" alt="" class="logo" /> <br />
Computer Choice
</h2>
<img id="computer-choice" src="" />
</div>
<div>
<h2>
<img src="./public/gamer.png" alt="" class="logo" /> <br />
User Choice
</h2>
<img id="user-choice" src="" />
</div>
</div>
<div class="button-container">
<img id="Rock" src="./public/rock.png" alt="Rock" /><br />
<img id="Paper" src="./public/paper.png" alt="Paper" />
<img id="Scissors" src="./public/scissors.png" alt="Scissors" />
</div>
<p class="js-score score"></p>
<button class="js-resetScore-button resetScore">Reset Score</button>
<p class="js-confirmation-message message-button"></p>
<div class="winner-container">
<h2>Winner:</h2>
<span id="winner" class="result-text"></span>
</div>
<footer>© 2023, Made By Gaurav Bhaskar</footer>
<script src="app.js"></script>
</body>
</html>