-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 1.31 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>
<link rel="icon" type="image/x-icon" href="nba.ico">
<title>NBA Data</title>
<meta name="google" content="notranslate" />
<link rel="stylesheet" type="text/css" href="project.css?id=1234" />
</head>
<body>
<div id="container">
<div id="navbar">
<img src="NBA.jpg" alt="NBA Logo" id="logo_img" />
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="getPlayer.php">Search Players</a></li>
<li><a href="sortPlayer.php">Sort Players</a></li>
<li><a href="insertPlayer.php">Create Players</a></li>
<li><a href="deletePlayer.php">Delete Players</a></li>
<li><a href="updatePlayer.php">Update Players</a></li>
</ul>
</div>
<h1>NBA Player Database</h1>
<p>
Welcome to the NBA Database for the years 2016 - 2021. Use this database
to find historical and semi-current facts regarding your favorite team! You can also create your own players, edit demographic info, and sort players by various stats.
This project was developed as part of CS 3265 at Vanderbilt University.
</p>
</div>
<img src="kawhi.jpg" alt="kawhi Picture" id="kawhi" />
<footer>
<p>Created by: Justin Carway and Gabe Hinojosa</p>
</footer>
</body>
</html>