-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (70 loc) · 2.45 KB
/
index.html
File metadata and controls
72 lines (70 loc) · 2.45 KB
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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Modern Rock Paper Scissors Game" />
<meta name="theme-color" content="#667eea" />
<link rel="stylesheet" href="./style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.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=Poppins:wght@400;600&display=swap"
rel="stylesheet"
/>
<title>Rock Paper Scissors</title>
</head>
<body>
<main>
<h1>✨ Rock Paper Scissors ✨</h1>
<div class="choice">
<section class="human">
<h2>Your Choice: <output id="playerChoice">?</output></h2>
<div class="buttons">
<button class="Rock" data-choice="Rock" aria-label="Rock">
<i class="fa-regular fa-hand-back-fist"></i>
</button>
<button class="Paper" data-choice="Paper" aria-label="Paper">
<i class="fa-regular fa-hand"></i>
</button>
<button
class="Scissors"
data-choice="Scissors"
aria-label="Scissors"
>
<i class="fa-regular fa-hand-scissors"></i>
</button>
</div>
</section>
<section class="computer">
<h2>Computer's Choice: <output id="computerChoice">?</output></h2>
</section>
<output id="result" aria-live="polite">Make your choice!</output>
<div class="scores">
<output id="playerScore">Player Score: 0</output>
<output id="computerScore">Computer Score: 0</output>
</div>
</div>
</main>
<p class="made">
Made with ❤️ by
<a href="https://daneshcode.github.io/Portfolio-Website/" target="_blank"
>Danesh</a
>
<a href="https://github.com/DaneshCode" target="_blank"
><i class="fab fa-github"></i
></a>
<a href="https://www.linkedin.com/in/DaneshCode" target="_blank"
><i class="fab fa-linkedin"></i
></a>
<a href="mailto:DaneshCode.Dev@gmail.com">
<i class="fas fa-envelope"></i
></a>
</p>
<script src="./app.js" type="module"></script>
</body>
</html>