-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<title>Rock Paper Scissors</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Lacquer&family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<main id="main-content">
<h1 id="title">Man vs Computer</h1>
<p class="desc animate" id="desc1">
Machines are threatening to take over the world...
</p>
<p class="desc disappear" id="desc2">
Unless you can defeat them in a game of rock paper scissors first to
5...
</p>
<p class="desc disappear" id="desc3">
Do you have what it takes to save mankind?
</p>
<p id="cta">Choose your weapon!</p>
<div id="game-container">
<div id="btn-container">
<div id="rock" class="button">
<img src="cave-painting.png" alt="Rock" />
</div>
<div id="paper" class="button">
<img src="document.png" alt="Paper" />
</div>
<div id="scissors" class="button">
<img src="scissors-opened-tool-shape.png" alt="Scissors" />
</div>
</div>
<div id="score-label">
<p class="label">you</p>
<p class="label">computer</p>
</div>
<div id="score-container">
<div id="player-score" class="score">0</div>
<div id="computer-score" class="score">0</div>
</div>
<div id="results-container"></div>
</div>
</main>
<div id="end-alert" class="disappear">
<div id="end-desc"></div>
<a id="retry-btn"></a>
</div>
<script src="app.js"></script>
</body>
</html>