-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (50 loc) · 1.64 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
<!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" />
<title>Rock Paper Scissor</title>
<!-- Primary Meta Tags -->
<meta
name="description"
content="Play the ultimate Rock Paper Scissors game! HTML, CSS, and JavaScript combine for a captivating experience. Challenge the computer, strategize your moves, and claim victory!"
/>
<!-- Favicon -->
<link rel="icon" href="./assets/favicon-512.png" />
<link rel="manifest" href="./manifest.webmanifest" />
<!-- Style -->
<link rel="stylesheet" href="./style.css" />
<!-- Script -->
<script defer src="./script.js"></script>
</head>
<body>
<main class="container">
<div class="resultBox">
<div class="resultImgs">
<span class="userResult">
<img src="./assets/rock.png" alt="user-hand" />
</span>
<span class="cpuResult">
<img src="./assets/rock.png" alt="cpu-hand" />
</span>
</div>
<div class="resultText">Let's Play!</div>
</div>
<div class="optionsBox">
<span class="optionImg">
<img src="./assets/rock.png" alt="rock-option" />
<p>Rock</p>
</span>
<span class="optionImg">
<img src="./assets/paper.png" alt="rock-option" />
<p>Paper</p>
</span>
<span class="optionImg">
<img src="./assets/scissors.png" alt="rock-option" />
<p>Scissor</p>
</span>
</div>
</main>
</body>
</html>