-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (72 loc) · 2.91 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="./styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rock, Paper, Scissors</title>
</head>
<body>
<section class="left">
<p class="left__emoji">👐</p>
<p class="left__human">Player</p>
<p class="left__wins">Wins: 0</p>
<button class="left__home left--hidden">Home</button>
</section>
<section class="home">
<h1 class="home__header">Rock, Paper, Scissors</h1>
<h2 class="home__subheader">Choose your game!</h2>
<section class="home__selection">
<div class="home__box home__classic">
<p class="home__option">🪨 CLASSIC ✂️</p>
<p class="home__rules">rock > scissors</p>
<p class="home__rules">paper > rock</p>
<p class="home__rules">scissors > paper</p>
</div>
</section>
<section class="home__selection">
<div class="home__box home__advanced">
<p class="home__option">🤼 ADVANCED 💣</p>
<p class="home__rules">rock > scissors & wrestler</p>
<p class="home__rules">paper > rock & bomb</p>
<p class="home__rules">scissors > paper & wrestler</p>
<p class="home__rules">bomb > rock & scissors</p>
<p class="home__rules">wrestler > paper & bomb</p>
</div>
</section>
<section class="fighter fighter--hidden">
<section class="fighter__mode">
<div class="fighter__classic fighter--margin">
<p class="fighter__rock fighter__fighters">🪨</p>
<p class="fighter__paper fighter__fighters">📄</p>
<p class="fighter__scissors fighter__fighters">✂️</p>
</div>
<div class="fighter__advanced fighter--hidden">
<p class="fighter__bomb fighter__fighters">💣</p>
<p class="fighter__wrestler fighter__fighters">🤼</p>
</div>
</section>
<section class="fighter__showdown fighter--hidden">
<div class="fighter__selected">
<p class="fighter__player"></p>
<p class="fighter__icon">👐</p>
</div>
<div class="fighter__selected">
<p class="fighter__computer"></p>
<p class="fighter__icon">🖥️</p>
</div>
</section>
<p class="fighter__winner"></p>
</section>
</section>
<section class="right">
<p class="right__emoji">🖥️</p>
<p class="right__computer">Computer</p>
<p class="right__wins">Wins: 0</p>
</section>
</body>
<script src="./main.js"></script>
</html>