-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./src/components/styles/indexStyle.css">
<title>Play - Rock, Paper, Scissors</title>
</head>
<body>
<section class="game-container">
<h1 class="title" id="heading">ROCK, PAPER, SCISSORS</h1>
<section class="icon-container" id="rps-icons">
<img class="icon rock" id="iconRock" src="./src/assets/imgs/icon-rock.png">
<img class="icon paper" id="iconPaper" src="./src/assets/imgs/icon-paper.png">
<img class="icon scissors" id="iconScissors" src="./src/assets/imgs/icon-scissors.png">
</section>
<button class="button" id="play-button">PLAY</button>
</section>
<footer class="footer-container">
<h4 class="score" id="wins-info">Wins: <span id="win-total">0</span></h4>
<h4 class="score-divider">|</h4>
<h4 class="score" id="draws-info">Draws: <span id="draw-total">0</span></h4>
<h4 class="score-divider">|</h4>
<h4 class="score" id="losses-info">Losses: <span id="loss-total">0</span></h4>
</footer>
<script type="text/javascript" src="./src/components/scripts/index.js"></script>
</body>
</html>