-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
38 lines (36 loc) · 1.18 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/modal.css" />
<link rel="icon" href="favicon.ico" />
<script src="https://kit.fontawesome.com/36431c2996.js"></script>
<title>Rock Paper Scissors</title>
</head>
<body>
<div class="container">
<header class="header">
<h1>Rock Paper Scissors</h1>
<button id="restart" class="restart-btn">Restart Game</button>
<div id="score" class="score">
<p>Player: 0</p>
<p>Computer: 0</p>
</div>
</header>
<h2>Make your choices</h2>
<div class="choices">
<i id="rock" class="choice fas fa-hand-rock "></i>
<i id="paper" class="choice fas fa-hand-paper "></i>
<i id="scissors" class="choice fas fa-hand-scissors "></i>
</div>
</div>
<!-- Modal -->
<div class="modal">
<div id="result" class="modal-content"></div>
</div>
<script src="js/main.js"></script>
</body>
</html>