<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SigmaSprite</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #ffffff;
color: #0b7224;
}
header {
background-color: #fbff00;
color: rgb(126, 128, 20);
padding: 20px 0;
text-align: center;
}
nav {
background-color: #1b7218;
padding: 10px;
text-align: center;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
main {
padding: 20px;
}
footer {
background-color: #1b7218;
color: white;
text-align: center;
padding: 10px;
position: relative;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>SPRITE</h1>
</header>
<nav>
<a href="#">Home</a>
<a href="#">Products</a>
<a href="#">Contact</a>
<a href="#">Buy Now</a>
</nav>
<main>
<h2>Sprite</h2>
<p>The OG, the flavor that started it all—classic, cool, crisp lemon-lime taste that’s caffeine free with 100% natural flavors.</p>
<p>Benefits: Provides good hydration, quenches your thirst. Just like different beverages, Sprite can help replace any fluids that have been lost through activities or illnesses. It can replace both the sodium and glucose your body has lost. Sprite also helps with digestion!</p>
</main>
<footer>
© 2025 Sprite. All rights reserved.
</footer>
</body>
</html>