-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (43 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="center">
<h1>☙ Lapis, Papyrus, Scalpellus ☙</h1>
<div class="byline">
<h2>Welcome to the <span class="italic">ultimate</span> ancient game of chance!</h2>
</div>
<div class="player-options-container">
<p>Roll up, roll up!<br><br>Take your pick and try to beat the <span class="italic">c0mPut3r:</span></p>
<div class="option">
<img class= "lps-img" src="https://res.cloudinary.com/ginctrl/image/upload/v1606381882/Lapis_s9q6to.png"><br>
<button class="buttons btn" id="Lapis">Lapis</button>
</div>
<div class="option">
<img class= "lps-img" src="https://res.cloudinary.com/ginctrl/image/upload/v1606381882/Papyrus_znp9en.png"><br>
<button class="buttons btn" id="Papyrus">Papyrus</button>
</div>
<div class="option">
<img class= "lps-img" src="https://res.cloudinary.com/ginctrl/image/upload/v1606381882/Scalpellus_ubnfci.png"><br>
<button class="buttons btn" id="Scalpellus">Scalpellus</button>
</div>
</div>
<div id="results" class="results-container">
<p id="resultsCSS"></p>
</div>
<div class="score-container">
<p class="score" id="player-score">Player: 0</p>
<p class="score" id="computer-score">Computer: 0</p>
</div>
<div class="reset-container">
<button class="buttons btn" id="reset-button">Reset</button>
</div>
<div class="footer">
<p>Enjoy responsibly.</p>
</div>
<script src="js/main.js" charset="utf-8"></script>
</body>
</html>