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
34 lines (24 loc) · 952 Bytes
/
index.html
File metadata and controls
34 lines (24 loc) · 952 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
29
30
31
32
33
34
<html>
<head>
<title> The best battle
</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>
<h2 class="result"></h2>
<h3 id="player-one-score"> </h3>
<p class= "player-one-name"> </p>
<img src="http://www.ktxs.com/image/view/-/14711956/medRes/3/-/kmxjhmz/-/San-Antonio-Spurs-logo---26032718.jpg" height="100" width="200"></img>
<h4 id="player-two-score"></h4>
<p class= "player-two-name"></p>
<img src="http://knickswag.com/wp-content/uploads/2013/10/New-York-Knicks-Logo-1.jpg" height="200" width="250"></img>
<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>
</body>
</html>