-
Notifications
You must be signed in to change notification settings - Fork 0
/
main-page.html
38 lines (38 loc) · 1.26 KB
/
main-page.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
<!DOCTYPE html>
<html>
<head>
<title>Rock Paper Scissors</title>
<link rel="stylesheet" href="stylesheet/main-style.css">
</head>
<body>
<div class="text">
<h1 id="main-header">Rock Paper Scissors</h1>
<h2>Select one:</h2>
</div>
<div id="img-container">
<div class="individual-container">
<img src="images/rock.png" id="rock" alt="Image of rock" data-value="rock">
</div>
<div class="individual-container">
<img src="images/paper.png" id="paper" alt="Image of paper" data-value="paper">
</div>
<div class="individual-container">
<img src="images/scissors.png" id="scissors" alt="Image of scissors" data-value="scissors">
</div>
</div>
<div id="footer">
<div id="user-section">
<p>You</p>
<p id="user-score">0</p>
</div>
<div id="computer-section">
<p>Computer</p>
<p id="computer-score">0</p>
</div>
</div>
<div>
<h3>Logs</h3>
</div>
</body>
<script type="text/javascript" src="script/game-script.js"></script>
</html>