-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (52 loc) · 2.14 KB
/
Copy pathindex.html
File metadata and controls
63 lines (52 loc) · 2.14 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Buckets — Player Value vs Earnings</title>
<link rel="stylesheet" href="style.css">
<!-- DataTables Core CSS -->
<link rel="stylesheet" href="https://cdn.datatables.net/1.13.4/css/jquery.dataTables.min.css">
<!-- DataTables Extensions CSS -->
<link rel="stylesheet" href="https://cdn.datatables.net/fixedheader/3.3.2/css/fixedHeader.dataTables.min.css">
<!-- FixedColumns CSS/JS -->
<link rel="stylesheet" href="https://cdn.datatables.net/fixedcolumns/4.3.0/css/fixedColumns.dataTables.min.css">
<script src="https://cdn.datatables.net/fixedcolumns/4.3.0/js/dataTables.fixedColumns.min.js"></script>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- DataTables Core JS -->
<script src="https://cdn.datatables.net/1.13.4/js/jquery.dataTables.min.js"></script>
<!-- DataTables Extensions JS -->
<script src="https://cdn.datatables.net/fixedheader/3.3.2/js/dataTables.fixedHeader.min.js"></script>
<script src="https://cdn.datatables.net/fixedcolumns/4.2.2/js/dataTables.fixedColumns.min.js"></script>
</head>
<body>
<header>
<h1>Buckets</h1>
<nav>
<a href="#" id="nav-nba" class="active">NBA</a>
<a href="#" id="nav-college">College</a>
<a href="#" id="nav-nil">NIL</a>
</nav>
</header>
<!-- Content Sections (empty containers for tables) -->
<section id="section-nba" class="content-section active">
<h2>NBA Player Value vs Earnings</h2>
<div class="table-container" id="nba-container"></div>
</section>
<section id="section-college" class="content-section">
<h2>College Player Value vs NIL</h2>
<div class="table-container" id="college-container"></div>
</section>
<section id="section-nil" class="content-section">
<h2>Top NIL Athletes</h2>
<div class="table-container" id="nil-container"></div>
</section>
<!-- Ad placeholder -->
<div class="ad-container">
<div class="ad-placeholder">Ad space</div>
</div>
<!-- Your app code -->
<script src="app.js"></script>
</body>
</html>