-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
142 lines (126 loc) · 4.42 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="canonical"
href="https://dottereldesign.github.io/pepa_kutikuti_koura/"
/>
<meta name="theme-color" content="#317EFB" />
<meta
name="description"
content="Jamie Wilson's implementation of Rock, Paper, Scissors. Created May, 2023."
/>
<link rel="icon" sizes="32x32" href="image/disney_favicon.png" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/path/to/apple-touch-icon.png"
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Rock, Paper, Scissors Game" />
<meta
property="og:description"
content="Play Rock, Paper, Scissors online!"
/>
<meta property="og:image" content="/path/to/image.jpg" />
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://dottereldesign.github.io/rock_paper_scissors/"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Rock, Paper, Scissors Game" />
<meta
name="twitter:description"
content="Play Rock, Paper, Scissors online!"
/>
<meta name="twitter:image" content="/path/to/image.jpg" />
<title>Rock, Paper, Scissors</title>
<script
src="https://kit.fontawesome.com/c627734373.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.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=Chivo+Mono:wght@800;900&family=Open+Sans:wght@300;400;500;600;700&family=Source+Sans+3:wght@400;500;600;800;900&family=Kanit:wght@300;400;500;700;800;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<a href="#"><img src="image/disney.png" alt="Disney Logo" /></a>
</header>
<section class="heading">
<h2 class="heading_paper">PEPA</h2>
<h2 class="heading_scissors">KUTIKUTI</h2>
<h2 class="heading_rock">KŌURA</h2>
</section>
<section class="rounds">
<div id="roundSelection">
<button id="bestOf3">Bo3</button>
<button id="bestOf5">Bo5</button>
<button id="bestOf7">Bo7</button>
</div>
</section>
<main class="game">
<div class="game_hand">
<button id="rockButton" aria-label="Select Rock"></button>
<button id="paperButton" aria-label="Select Paper"></button>
<button id="scissorsButton" aria-label="Select Scissors"></button>
</div>
</main>
<section class="result">
<div class="result_container">
<div class="result_title">
<h3>Scoreboard</h3>
</div>
<div class="result_scoreboard">
<div class="result_grid-1">
<div class="result_score-user result_score-wrapper">
<div id="scoreUser"></div>
</div>
<div class="result_score-placeholder" id="scoreCardUser"></div>
</div>
<span>vs</span>
<div class="result_grid-3">
<div class="result_score-placeholder" id="scoreCardComputer"></div>
<div class="result_score-computer result_score-wrapper">
<div id="scoreComputer"></div>
</div>
</div>
</div>
</div>
<div id="gameArea" style="display: none">
<div id="result"></div>
<button id="playAgainButton" style="display: none">Play Again</button>
</div>
</section>
<footer>
<div class="rules">
<h4 class="rules_title">Rules</h4>
<ul class="rules_list">
<li>
<span>1.</span> Rock beats Scissors: Rock smashes or breaks
scissors.
</li>
<li>
<span>2.</span> Paper beats Rock: Paper covers and wraps around
rock.
</li>
<li>
<span>3.</span> Scissors beats Paper: Scissors cut through paper.
</li>
</ul>
</div>
<a class="social" href="https://github.com/dottereldesign">
<i class="social_icon fa-brands fa-github" aria-label="GitHub Icon"></i>
<p class="social_text">Created by Jamie Wilson</p>
</a>
</footer>
<script src="script.js"></script>
</body>
</html>