-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Rock Paper Scissors</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="javascript.js" defer></script>
<div class="main-content">
<div class="welcome">
<h2>Welcome to the Duel Arena.</h2>
<h3>Please select your weapon.</h3>
</div>
<div class="weapon-images">
<img id="weapon1" src="images/dscim.png">
<img id="weapon2" src="images/fbow.png">
<img id="weapon3" src="images/ancientstaff.png">
</div>
<div class="weapon-labels">
<h4>Dragon Scimitar</h4>
<h4>Bow of Faerdhinen</h4>
<h4>Ancient Staff</h4>
</div>
<div class="scoring">
<div class="scores">
<div id="kd-txt">
<h3 id="kill-txt">Kills</h3>
<h3 id="death-txt">Deaths</h3>
</div>
<div id="kd-num">
<p id="kills">0</p>
<p id="deaths">0</p>
</div>
</div>
<div class="results">
<h3 id="results-txt">Combat Log</h3>
<p id="results-box"></p>
</div>
</div>
<div class="buttons">
<button id="replay" onClick="window.location.reload();">Rest and return to the fray!</button>
</div>
</div>
<div class="footer">
<p>Copyright Cohen Coberly 2022</p>
</div>
</body>
</html>