-
Notifications
You must be signed in to change notification settings - Fork 0
/
SPS.html
35 lines (27 loc) · 1017 Bytes
/
SPS.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🪨📃✂️</title>
<link rel="stylesheet" href="SPS.css">
<script src="SPS.js"></script>
</head>
<body>
<div class="container">
<button id="retry"
style="width: 50px; font-size:larger;font-weight: bolder; float:right;cursor:pointer;display:none;"
onclick="retry()">↻</button>
<h1>Please Select One:- </h1> <br>
<button id="stone" onclick="stone()">Stone</button>
<button id="paper" onclick="paper();">Paper</button>
<button id="scissor" onclick="scissor();">Scissor</button> <br>
<h1>Computer's Choise:- </h1>
<button id="cStone">Stone</button>
<button id="cPaper">Paper</button>
<button id="cScissor">Scissor</button>
<h1>Result:-</h1>
<input type="text" readonly>
</div>
</body>
</html>