-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (38 loc) · 1.36 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
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissors</title>
<script src="script.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<h1>Rock Paper Scissors</h1>
</header>
<div class="main">
<div class="buttons">
<button class="buttons button" id="rock"><img src=res/rock.png alt="Rock"></button>
<button class="buttons button"id="paper"><img src=res/paper.png alt="Paper"></button>
<button class="buttons button" id="scissors"><img src=res/scissors.png alt="Scissors"></button>
</div>
<div class="scoreboard">
<h3 class="sb-title">Scoreboard</h3>
<div class="pVc">
<h4 class="leftsb">Player</h4>
<h5 class="player-score">0</h5>
<h5 class="computer-score">0</h5>
<h4 class="rightsb">Computer</h4>
</div>
</div>
</div>
<footer class="footer">
<p>Copyright © taterstotsey</p>
<a href="https://github.com/tatertotsey" target="_blank">
<!-- <i class="fab fa-github" aria-hidden="true"> ::before</i> -->
</a>
</footer>
</body>
</html>