-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 1.84 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
50
51
52
53
54
55
<!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="style.css">
<title>Rock Paper Scissors</title>
<script src="script.js" defer></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide">
</head>
<body>
<main>
<div id="loss">
<div>YOU LOST!!!</div>
<button onclick="document.location='https://bigmanboss.github.io/RPS/'">Again?</button>
</div>
<div id="win">
<div>YOU WON!!!</div>
<button onclick="document.location='https://bigmanboss.github.io/RPS/'">Again?</button>
</div>
<div class="title">
<div>This Is Rock Paper Scissors!!!</div>
</div>
<div class="result">
<p id="change">If You Want To Play Just Start By Choosing Rock, Paper Or Scissors...</p>
</div>
<div class="playerSelect">
<button class="rock" onclick="rock()">
<div>Rock</div>
<img src="images/rock.png" alt="rock">
</button>
<button class="paper" onclick="paper()">
<div>Paper</div>
<img src="images/paper.png" alt="paper">
</button>
<button class="scissors" onclick="scissors()">
<div>Scissors</div>
<img src="images/scissors.png" alt="scissors">
</button>
</div>
<div class="wins">
<div>
<h1>wins:</h1>
<p id="p">Player: </p>
<p id="c">CPU: </p>
</div>
</div>
</main>
<footer class="copyright">
<p>Blah Blah CopyRight Blah Blah</p>
</footer>
</body>
</html>