-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmission-one.html
88 lines (73 loc) · 3.99 KB
/
mission-one.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NBA 2K24 Builds</title>
<link rel="stylesheet" href="mission-one.css">
</head>
<body>
<nav>
<a href="#home">Home</a>
<a href="#builds">Builds</a>
<a href="#images">Images</a>
<a href="#contact">Contact</a>
</nav>
<div class="container">
<aside>
<h2>Categories</h2>
<ul>
<li><a href="#top-builds">Top Builds</a></li>
<li><a href="#best-players">Best Players</a></li>
<li><a href="#latest-news">Latest News</a></li>
</ul>
</aside>
<main>
<header>
<h1>Top NBA 2K24 Builds</h1>
</header>
<div class="main-container">
<section id="top-builds" class="content">
<h2>Top Builds</h2>
<div class="builds">
<div class="build">
<img src="slashing_playmaker.jpg" alt="Build 1">
<h3>Slashing Playmaker</h3>
<p>Slashing Playmaker: Ideal for those who love to drive to the basket and make dynamic plays. This build combines explosive athleticism with strong playmaking skills, allowing players to finish at the rim with authority and distribute the ball effectively. Prioritize attributes like driving layup and dunk, playmaking, and speed to dominate in fast breaks and create scoring opportunities.</p>
</div>
<div class="build">
<img src="play_shot.jpg" alt="Build 2">
<h3>Playmaking Shot Creator</h3>
<p>Playmaking Shot Creator: This build is designed for players who excel in dribbling and mid-range shooting. They can easily create their own shots and set up teammates with precision. The focus should be on maximizing ball handling, mid-range shooting, and speed to enhance both offensive creation and quick movement on the court.</p>
</div>
<div class="build">
<img src="hybrid_defender.jpg" alt="Build 3">
<h3>Hybrid Defender</h3>
<p>Hybrid Defender: A versatile build that excels in both defense and scoring. The Hybrid Defender can guard multiple positions effectively while also contributing with versatile scoring and rebounding. To optimize this build, focus on enhancing defensive skills, rebounding ability, and scoring versatility to make a significant impact on both ends of the court.</p>
</div>
</div>
</section>
<section id="images" class="content">
<h2>Image Gallery</h2>
<img src="glass_cleaner.jpeg" alt="Image 2">
</section>
<section id="contact" class="content">
<h2>Contact</h2>
<form action="[email protected]" method="post" enctype="text/plain">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<button type="submit">Send</button>
</form>
</section>
</div>
</main>
</div>
<footer>
<p>© 2024 NBA 2K24 Builds. All rights reserved.</p>
</footer>
</body>
</html>