-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 1.14 KB
/
index.html
File metadata and controls
38 lines (32 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>rock,papper,cissor game
</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="wrapper">
<div className=' fixed flex flex-wrap justify-center top-7 inset-x-0'><img src="https://readme-typing-svg.demolab.com?font=Poppins&duration=5000&pause=500&color=F7F7F7&random=false&width=400&lines=Hey+This+is+Rock+Paper+Scissor+Game" alt="Typing SVG" />
</div>
<h1> Lets play!! </h1>
<div class="buttons">
<button class="rpsButton" value="Rock">✊</button>
<button class="rpsButton" value="Paper">🤚</button>
<button class="rpsButton" value="Scissors">✌️</button>
</div>
<div class="resultContainer">
<div id="player-score"></div>
<div id="hands"></div>
<div id="result"></div>
<button id='endGameButton'>🔴</button>
</div>
<p class="copyright">
© All rights reserved by <span><a href="https://github.com/kartikmehta18">kartikmehta18</a></span>
</p>
</div>
<script src="script.js"></script>
</body>
</html>