forked from alexpelan/ScriptEdBasketball
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 792 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 792 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
<html>
<head>
<title>Kobe vs. Jordan</title>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="basketball.js"></script>
<script src="starter_code.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1 class="whose-turn"></h1>
<h1 class="result"></h1>
<div>
<button class="js-two-pointer">Take a two point shot</button>
<button class="js-three-pointer">Take a three point shot</button>
<button class="js-reset">Reset</button>
</div>
<h2 id="player-one-score"></h2>
<p class="player-one-name"></p>
<img src="https://media.giphy.com/media/It8CoKH1RygN2/giphy.gif">
<h2 id="player-two-score"></h2>
<p class="player-two-name"></p>
<img src="https://media.giphy.com/media/1237EvS8dYtWIU/giphy.gif">
</body>
</html>