-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (51 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Rock Paper Scissors</title>
<link rel="shortcut icon" href="favicon/favicon.ico" type="image/x-icon">
<script src="script.js" defer></script>
<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=Amatic+SC:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="containerTotal">
<main>
<h1>ROCK — PAPER —SCISSORS</h1>
<h2>Choose Your Weapon:</h2>
<div class="weapons">
<div class="rock card">
<img src="images/rock.png">
</div>
<div class="paper card">
<img src="images/paper.png">
</div>
<div class="scissors card">
<img src="images/scissors.png">
</div>
</div>
<dialog class="modal" id="modal" close>
<span id="gameover"></span>
<button id="restart">Play Again?</button>
</dialog>
<span class="round"></span>
<span class="result"></span>
<div class="container">
<div id="you"></div>
<div id="vs">VS</div>
<div id="pc"></div>
</div>
</main>
<footer>
<p><a href='https://pngtree.com/so/Block'>Block png from pngtree.com/</a> ||
<a
href="https://www.freepik.com/free-vector/zigzag-lines-pattern-black-background_24858829.htm#query=black%20pattern&position=25&from_view=keyword&track=ais">Image
by starline on Freepik</a> || Made with ♥ by Trisha Seal || 2023 || The Odin Project
</p>
</footer>
</div>
</body>
</html>