-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (40 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
<!DOCTYPE html>
<html>
<title>Rock-Paper-Scissors</title>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<p class="header" id="title"><em><strong class="semi">R</strong>ock .
<strong class="semi">P</strong>aper . <strong class="semi">S</strong>cissors</em></p>
<p class="header" id="call-to-action">Try to beat adamperrry</p>
<p class="header" id="details">First to <strong class="semi">5</strong> wins</p>
<main class="main">
<div class="player-stats">
<p class="player">you</p>
<div class="player-score">0</div>
<img class="player-selection" alt="Selection" src="images/Waiting.png" ></img>
</div>
<div class="arena">
<p class="arena-text">Make a move below to begin!</p>
</div>
<div class="computer-stats">
<p class="computer">adam</p>
<div class="computer-score">0</div>
<img class="computer-selection" alt="Selection" src="images/Waiting.png" ></img>
</div>
</main>
<div class="images">
<img class="image ROCK" alt="Rock" src="images/ROCK.png">
<img class="image PAPER" alt="Paper" src="images/PAPER.png">
<img class="image SCISSORS" alt="Scissors" src="images/SCISSORS.png">
</div>
<div class="btns">
<div class="btn btn-ROCK" title="You rock!" >ROCK</div>
<div class="btn btn-PAPER" title="$$$" >PAPER</div>
<div class="btn btn-SCISSORS" title="Don't run..." >SCISSORS</div>
</div>
<div class="restart">Restart</div>
<script src="script.js"></script>
</body>
</html>