-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 1.75 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
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Rock Paper Scissors</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.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=Mulish:wght@200&display=swap" rel="stylesheet">
</head>
<body>
<header id = "section-0"></header>
<div id="section-1">
<div id="section-1-wrapper">
<div id="one">
<h2>User</h2>
<h1 id="userScore">0</h1>
</div>
<div id="two">
<h2 id="selector">Choose rock, paper, or scissors</h2>
</div>
<div id="three">
<h2>Computer</h2>
<h1 id="compScore">0</h1>
</div>
</div>
</div>
<div id="btns">
<button class="selectBtn" id="rock"><h1 style="font-size: 50px; margin-top: 0.2em;">✊</h1></button>
<button class="selectBtn" id = "paper"><h1 style="font-size: 50px; margin-top: 0.2em;">✋</h1></button>
<button class="selectBtn" id="scissors"><h1 style="font-size: 50px; margin-top: 0.2em;">✌️</h1></button>
</div>
<div id="screen">
<button id="resetBtn">Reset</button>
</div>
<footer>
<p>Copyright @HaskMoney</p>
</footer>
<script src="index.js" defer></script>
</body>
</html>