-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 2.22 KB
/
index.html
File metadata and controls
54 lines (54 loc) · 2.22 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
<!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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
</head>
<body>
<div class="dragon-background">
<img src="Chinese dragon 飞龙在天 金左 (1).gif" alt="Decorative Chinese dragon" />
</div>
<div class="container min-vh-100 d-flex flex-column justify-content-center align-items-center">
<h1 class="mb-4 game-title">Rock, Paper Scissors</h1>
<section id="game" class="game-buttons mb-4">
<button id="btn-rock" class="btn btn-primary game-btn">rock</button>
<button id="btn-paper" class="btn btn-primary game-btn">paper</button>
<button id="btn-scissors" class="btn btn-primary game-btn">scissors</button>
</section>
<section id="running-score" class="score-section mb-4">
<h2>Score</h2>
<div id="score" class="score-container">
<div class="score-box">
<h5>Human</h5>
<p id="human-score" class="score">
0
</p>
</div>
<div class="score-box">
<h5>Computer</h5>
<p id="computer-score" class="score">
0
</p>
</div>
</div>
</section>
<section id="results" class="results-section w-100">
<div class="card">
<div class="card-body">
<p class="card-text text-center">Press the buttons to play!</p>
</div>
</div>
</section>
</div>
<footer class="footer-42">
<div class="container">
<a href="https://www.iker42.blog/" rel="noreferrer" target="_blank"> <i>☀️The 42 Diseño Web </i></a>
</div>
</footer>
<p class="credit">Crétido por el gif a Matellng: <a href="https://pin.it/2QkGXc5zc" target="_blank" rel="noreferrer">Pinterest</a></p>
</body>
</html>