-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (33 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./Resources/CSS/style.css" rel="stylesheet" />
<title>Applications to calculate few Maths formula</title>
</head>
<body>
<h1 class="heading">Rock, Paper, Scissors</h1>
<h2 class="requestChoice">Make a choice?</h2>
<div class="choiceMessage">Player Choices</div>
<div class="btns flex hide">
<button class="btn rock" id="rock">Rock</button>
<button class="btn paper" id="paper">Paper</button>
<button class="btn scissors" id="scissors">Scissors</button>
</div>
<button id="playAgain">Play Again!</button>
<div>
<h2 class="compChoice">Computer's choice</h2>
<div class="compMessage">Computer message</div>
<h3 class="result">result</h3>
<div>check</div>
</div>
<div>
<h3 class="winner">Winner</h3>
<h3 class="round">ROUND: 0</h3>
<h3 class="compScore">COMPUTER SCORE: 0</h3>
<h3 class="playerScore">PLAYER SCORE: 0</h3>
</div>
<script type="module" src="./Resources/JavaScript/script.js"></script>
</body>
</html>