-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (40 loc) · 1.27 KB
/
index.html
File metadata and controls
46 lines (40 loc) · 1.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissors Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="intro">
<img id="vs" src="img/vs.gif"/>
<h2> Rock Paper Scissors Game </h2>
<img id="vs" src="img/vs.gif"/>
</div>
<div class="arena">
<div class="comp">
<h2>Computer Choice:</h2>
<h2 id="computer-choice"></h2>
</div>
<div class="res">
<h2 id="result">
<img id="win" alt="win" src="img/win.gif">
<img src="img/lose.gif" alt="lose" id="lose">
<img id="tied" alt="tied" src="img/tied.gif">
</h2>
</div>
<div class="use">
<h2>Your Choice:</h2>
<h2 id="user-choice"></h2>
</div>
</div>
<h1 id="play">Let's Play!!!</h1>
<div class="select">
<img class="choices" id="rock" src="img/rock.png" />
<img class="choices" id="paper" src="img/paper.png" />
<img class="choices" id="scissors" src="img/sci.png" />
</div>
</body>
<script src="app.js" charset="utf-8"></script>
</html>