-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 935 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rock Paper Scissors</title>
<link rel="shortcut icon" href="img/icon.ico" />
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="game">
<div class="container">
<select id="select"></select>
<button id="submit">Enter</button>
<div class="images">
<div class="image">
<img id="player1" src="img/rock.png" />
</div>
<div class="image">
<img id="player2" class="player2" src="img/scissors.png" />
</div>
</div>
<div id="result" class="result"> </div>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>