File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Source-Code/RockPapperScissor Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < link href ="style.css " rel ="stylesheet " />
7+ < title > Rock Paper Scissor Game</ title >
8+ </ head >
9+ < body >
10+ < div class ="wrapper ">
11+ < ul class ="buttons ">
12+ < button class ="rpsButton button " value ="Rock "> ✊</ button >
13+ < button class ="rpsButton button " value ="Paper "> 🤚</ button >
14+ < button class ="rpsButton button " value ="Scissors "> ✌️</ button >
15+ </ ul >
16+ < ul class ="resultContainer ">
17+ < div id ="player-score "> </ div >
18+ < div id ="hands "> </ div >
19+ < div id ="result "> </ div >
20+ < button id ='endGameButton '> 🔴</ button >
21+ </ ul >
22+ </ div >
23+
24+ < script src ="script.js "> </ script >
25+ </ body >
26+ </ html >
You can’t perform that action at this time.
0 commit comments