-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (101 loc) · 4.25 KB
/
Copy pathindex.html
File metadata and controls
107 lines (101 loc) · 4.25 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hoop Connect | Homepage</title>
<link rel="icon" type="image/png" href="images/favicon.png">
<link rel="stylesheet" href="css/styles.css">
<script src="js/script.js" defer></script>
</head>
<body>
<!-- Header with logo and navigation -->
<header>
<div class = "logo">
<h1>Hoop Connect</h1>
</div>
<nav>
<ul>
<li><a href="index.html" class="nav-link active">Home</a></li>
<li><a href="profiles.html" class="nav-link">Player Profiles</a></li>
<li><a href="teams.html" class="nav-link">Team Pages</a></li>
<li><a href="fanzone.html" class="nav-link">Fan Zone</a></li>
</ul>
</nav>
</header>
<!-- Hero Section with banner slider -->
<section class="hero">
<div class="banner">
<ul class="slides">
<li class="image-item active"><img src="images/Players/kobe.jpg" alt="NBA Action Shot 1"></li>
<li class="image-item"><img src="images/Players/tatum-durant.webp" alt="NBA Action Shot 2"></li>
<li class="image-item"><img src="images/Players/nikola-jokic.webp" alt="NBA Action Shot 3"></li>
<li class="image-item"><img src="images/Players/sga-luka.webp" alt="NBA Action Shot 4"></li>
<li class="image-item"><img src="images/Players/anthony-edwards.jpg" alt="NBA Action Shot 5"></li>
</ul>
<!-- Arrows -->
<button class="arrow left">❮</button>
<button class="arrow right">❯</button>
</div>
<!-- Dots -->
<div class="dots">
<span class="dot" data-slide="0"></span>
<span class="dot" data-slide="1"></span>
<span class="dot" data-slide="2"></span>
<span class="dot" data-slide="3"></span>
<span class="dot" data-slide="4"></span>
</div>
</section>
<section class="intro">
<h2>Introduction</h2>
<p>Welcome to Hoop Connect, your ultimate hub for everything NBA.<br>Explore player profiles, team insights, and dive deep into the world of professional basketball.</p>
</section>
<!-- Featured Players/Teams Section -->
<section class="featured-players">
<div class="player-card">
<div class="player-image">
<img src="images/Players/lebron-james.jpeg" alt="Lebron James">
</div>
<h3>Lebron James</h3>
<p>Position: Forward</p>
<p>PPG: 27.1</p>
<p>RPG: 7.5</p>
<p>APG: 7.4</p>
<a href="https://www.basketball-reference.com/players/j/jamesle01.html" class="view-profile">View Profile</a>
</div>
<div class="player-card">
<div class="player-image">
<img src="images/Players/stephen-curry.jpg" alt="Stephen Curry">
</div>
<h3>Stephen Curry</h3>
<p>Position: Guard</p>
<p>PPG: 24.8</p>
<p>RPG: 7.7</p>
<p>APG: 6.4</p>
<a href="https://www.basketball-reference.com/players/c/curryst01.html" class="view-profile">View Profile</a>
</div>
<div class="player-card">
<div class="player-image">
<img src="images/Players/giannis-antetokounmpo.jpg" alt="Giannis Antetokounmpo">
</div>
<h3>Giannis Antetokounmpo</h3>
<p>Position: Forward</p>
<p>PPG: 23.4</p>
<p>RPG: 9.8</p>
<p>APG: 4.9</p>
<a href="https://www.basketball-reference.com/players/a/antetgi01.html" class="view-profile">View Profile</a>
</div>
</section>
<footer>
<p>© 2024 Hoop Connect | All Rights Reserved</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</footer>
<main>
</main>
</body>
</html>