<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Daily Spend</title>
<style>
body {
margin: 0;
font-family: 'Poppins', 'Montserrat', sans-serif;
color: #000;
}
header {
background-color: #29b63a;
color: white;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
header .logo {
font-size: 1.5rem;
font-weight: bold;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav ul li {
margin-left: 1.5rem;
}
nav ul li a {
text-decoration: none;
color: white;
font-weight: 500;
transition: color 0.3s;
}
nav ul li a:hover {
color: #000;
}
main {
padding: 2rem;
text-align: center;
}
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
padding: 2rem;
}
.service-card {
background-color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
padding: 1.5rem;
text-align: center;
transition: transform 0.3s;
}
.service-card:hover {
transform: translateY(-5px);
}
.service-card img {
width: 50px;
height: 50px;
margin-bottom: 1rem;
}
footer {
background-color: #000;
color: white;
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
}
footer a {
color: #29b63a;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<div class="logo">The Daily Spend</div>
<nav>
<ul>
<li><a href="#savings-goals">Savings Goals Tracker</a></li>
<li><a href="#subscription-manager">Subscription Manager</a></li>
<li><a href="#spending-analytics">Spending Analytics</a></li>
<li><a href="#deals">Deals & Discounts</a></li>
<li><a href="#credit-score">Credit Score Insights</a></li>
</ul>
</nav>
</header>
<main>
<section class="services">
<div class="service-card">
<img src="https://via.placeholder.com/50" alt="Savings Goals">
<h2>Savings Goals Tracker</h2>
<p>Set your financial goals and track your progress with ease.</p>
</div>
<div class="service-card">
<img src="https://via.placeholder.com/50" alt="Subscription Manager">
<h2>Subscription Manager</h2>
<p>Manage and cancel your subscriptions in one place.</p>
</div>
<div class="service-card">
<img src="https://via.placeholder.com/50" alt="Spending Analytics">
<h2>Spending Analytics</h2>
<p>Visualize and optimize your spending habits with detailed insights.</p>
</div>
<div class="service-card">
<img src="https://via.placeholder.com/50" alt="Deals & Discounts">
<h2>Deals & Discounts</h2>
<p>Explore the latest deals and save big with our curated coupon codes.</p>
</div>
</section>
</main>
<footer>
<p>© 2025 The Daily Spend. All rights reserved. <a href="#">Privacy Policy</a></p>
</footer>
</body>
</html>