-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1008 Bytes
/
Copy pathindex.html
File metadata and controls
43 lines (39 loc) · 1008 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
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>NBA Info Center</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="page">
<div class="title">
<h1>Welcome to your NBA Info Center</h1>
<img src="nba.png" alt="NBA logo">
</div>
<div class="viewTeams">
<form>
<label>
<h3>View all NBA teams</h3><br>
</label>
<input id="getTeams" type="Submit" value="Get Teams"></input>
</form>
</div>
<div id="teamResults">
</div>
<hr>
<div class="viewPlayers">
<form>
<label><h3>View all NBA players</h3><br></label>
<input id="playerSubmit" type="Submit" value="Get Players"></input>
</form>
</div>
<div id="playerResults">
</div>
<div id="footer">
</div>
</div>
<script text="type/javascript" src="teams-script.js"></script>
<script type="text/javascript" src="players-script.js"></script>
</body>
</html>