-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (71 loc) · 2.52 KB
/
index.html
File metadata and controls
77 lines (71 loc) · 2.52 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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">
<link rel="stylesheet" href="Assest/Style/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Rock, Paper, Scissors</title>
</head>
<body style="background-color: black;">
<h1 style="text-align: center;margin-top: 20px;color: silver !important;">Rock, Paper, Scissor - By Prashant</h1>
<div class="main">
<div class="contianer">
<div class="head">
<h2>Round <span id="round-counter">1</span></h2>
</div>
<div class="counter">
<div class="win">
<p>WIN</p>
<span id="win">0</span>
</div>
<div class="draw">
<p>TIES</p>
<span id="draw">0</span>
</div>
<div class="lose">
<p>WIN</p>
<span id="lose">0</span>
</div>
</div>
<div class="game-section">
<div class="we-choice">
<img src="Assest/Images/Rock.png" alt="rock">
<div class="we-choice-content">
<span id="rock"><i class="fas fa-hand-rock"></i></span>
<span id="paper"><i class="fas fa-hand-paper"></i></span>
<span id="scissors"><i class="fas fa-hand-scissors"></i></span>
</div>
</div>
<div class="middle">
<h1>ROUNDS</h1>
<div class="counter-rounds"></div>
<h2>RESULT</h2>
<div class="winner"></div>
</div>
<div class="bot-choice">
<img src="Assest/Images/comp-Rock.png" alt="rock">
<div class="bot-choice-content">
<p>Bot Choice</p>
</div>
</div>
</div>
<div class="rounds-responsive">
<div class="choice we-choice-content">
<span id="rock2"><i class="fas fa-hand-rock"></i></span>
<span id="paper2"><i class="fas fa-hand-paper"></i></span>
<span id="scissors2"><i class="fas fa-hand-scissors"></i></span>
</div>
<div class="middle2">
<h1>ROUNDS</h1>
<div class="counter-rounds2"></div>
<h2>RESULT</h2>
<div class="winner2"></div>
</div>
</div>
</div>
</div>
<script src="JS/main.js"></script>
</body>
</html>