-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (24 loc) · 888 Bytes
/
index.html
File metadata and controls
28 lines (24 loc) · 888 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissors</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="container">
<h1 class="instructions"> Instructions:</h1>
<h4 class="instructions"> 1. Click the Buttons to select your WEAPON </h5>
<h4 class="instructions" id="instr2"> 2. First to win 5 GAMES win</h5>
<div id="result"> <p id="text"></p> </div>
<div id="buttonContainer">
<button id="rock" class="select"> Rock </button>
<button id="paper" class="select"> Paper </button>
<button id="scissors" class="select"> Scissors </button>
</div>
</div>
<script src="script.js"> </script>
</body>
</html>