-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.26 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">
<script src = "script.js" defer></script>
<link rel = "stylesheet" href = "style.css">
<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=Short+Stack&display=swap" rel="stylesheet">
<title>Rock Paper Scissor</title>
</head>
<body>
<header id = "header">
<div class="content">Rock Paper Scissor</div>
</header>
<div id = "gameplay">
<div class="container">
<div id="buttons">
<button type = "button" class = "pics f" id="rock"><img src = "images/rock.png"></button>
<button type = "button" class = "pics" id="paper"><img src = "images/paper.png"></button>
<button type = "button" class = "pics l" id="scissor"><img src = "images/scissor.png"></button>
</div>
<div class="score">
<div>Player Score: <span id = "player">0</span></div>
<div>Bot Score: <span id = "bot">0</span></div>
</div>
</div>
</div>
<div id="footer">Let The Game Begin</div>
</body>
</html>