-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<title>Rock, Paper, Scissors - Mansoor</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/bootstrap.materia.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Rock, Paper, Scissors</h1>
</header>
<div class="row">
<div class="col-sm-12">
<h3>Make a selection:</h3>
<button class="btn btn-default" id="rock">Rock</button>
<button class="btn btn-default" id="paper">Paper</button>
<button class="btn btn-default" id="scissors">Scissors</button>
</div>
</div>
<div class="row">
<div class="col-sm-5" id="userPlay">
<h4>User Play:</h4>
</div>
<div class="col-sm-5 offset-sm-2" id="compPlay">
<h4>Computer Play:</h4>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>