<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sports Blog</title>
<style>
/* Reset some default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styles */
body {
font-family: Arial, sans-serif;
background-color: #f8f8f8;
color: #333;
line-height: 1.6;
}
/* Header styles */
header {
background-color: #333;
color: #fff;
padding: 15px 0;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
flex-wrap: wrap;
}
header .logo h1 {
font-size: 28px;
font-weight: bold;
color: #f76c6c;
/* Light red for the logo */
}
header nav ul {
list-style-type: none;
display: flex;
}
header nav ul li {
display: inline;
margin: 0 15px;
}
header nav ul li a {
color: #fff;
text-decoration: none;
font-size: 18px;
padding: 5px;
}
header nav ul li a:hover {
background-color: #f76c6c;
/* Light red hover */
border-radius: 5px;
}
/* Categories Navigation Bar - Default for Desktop */
#categories-nav {
background-color: #333;
color: #fff;
padding: 10px 0;
margin-top: 20px;
}
#categories-nav ul {
list-style-type: none;
display: flex;
justify-content: center;
gap: 15px;
}
#categories-nav ul li {
display: inline;
}
#categories-nav ul li a {
color: #fff;
text-decoration: none;
font-size: 16px;
padding: 5px;
}
#categories-nav ul li a:hover {
background-color: #f76c6c;
border-radius: 5px;
}
/* Main Content Styles */
main {
padding: 20px;
}
h2 {
color: #333;
font-size: 28px;
margin-bottom: 10px;
color: #f76c6c;
/* Light red for section titles */
}
section#home {
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section#news article {
background-color: #fff;
padding: 15px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section#news article h3 {
color: #f76c6c;
/* Light red for article titles */
font-size: 22px;
}
section#news article p {
font-size: 16px;
color: #555;
}
section#news article a {
display: inline-block;
margin-top: 10px;
color: #0066cc;
/* Blue for links */
text-decoration: none;
font-size: 16px;
}
section#events ul {
list-style-type: none;
}
section#events ul li {
background-color: #fff;
padding: 10px;
margin: 5px 0;
border-radius: 8px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
color: #333;
}
section#events ul li:hover {
background-color: #f76c6c;
/* Light red hover for events */
color: #fff;
}
section#featured-posts {
display: flex;
gap: 20px;
margin-top: 40px;
}
section#featured-posts .post {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
flex: 1;
transition: transform 0.3s ease-in-out;
}
section#featured-posts .post:hover {
transform: scale(1.05);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
section#featured-posts .post h3 {
color: #333;
font-size: 20px;
color: #f76c6c;
/* Light red for post titles */
}
section#featured-posts .post p {
font-size: 16px;
color: #555;
}
section#featured-posts .post a {
display: inline-block;
margin-top: 10px;
color: #0066cc;
text-decoration: none;
font-size: 16px;
}
section#contact {
background-color: #fff;
padding: 20px;
margin-top: 30px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section#contact p {
font-size: 16px;
}
/* Footer Styles */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}
/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
/* Header and Navigation */
header {
flex-direction: column;
align-items: flex-start;
}
header nav ul {
flex-direction: column;
align-items: flex-start;
width: 100%;
}
header nav ul li {
margin: 10px 0;
}
/* Categories Navigation Bar - Mobile */
#categories-nav ul {
overflow-x: scroll;
/* Allows horizontal scrolling */
display: flex;
flex-wrap: nowrap;
padding-left: 0;
justify-content: start;
margin-top: 10px;
gap: 15px;
}
#categories-nav ul li {
flex-shrink: 0;
/* Prevents shrinking of list items */
}
/* Adjustments for Sections */
section#home,
section#news,
section#events,
section#featured-posts,
section#contact {
padding: 15px;
margin-bottom: 15px;
}
/* Featured Posts Layout */
section#featured-posts {
flex-direction: column;
}
section#featured-posts .post {
flex: none;
width: 100%;
}
/* Categories Section */
section#categories-nav ul li {
margin: 0 10px;
}
/* Section Titles */
h2 {
font-size: 24px;
}
section#home p,
section#news article p,
section#events ul li {
font-size: 14px;
}
}
@media (max-width: 480px) {
/* Further reduce font size for very small devices */
h2 {
font-size: 20px;
}
section#home p,
section#news article p,
section#events ul li {
font-size: 13px;
}
section#featured-posts .post h3 {
font-size: 18px;
}
section#news article h3 {
font-size: 18px;
}
}
</style>
</head>
<body>
<!-- Header Section -->
<header>
<div class="logo">
<h1>Sports Blog</h1>
</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Categories Navigation Bar -->
<div id="categories-nav">
<ul>
<li><a href="#football">Football</a></li>
<li><a href="#basketball">Basketball</a></li>
<li><a href="#cricket">Cricket</a></li>
<li><a href="#tennis">Tennis</a></li>
<li><a href="#olympics">Olympics</a></li>
<li><a href="#motorsport">Motorsport</a></li>
</ul>
</div>
<!-- Main Content Section -->
<main>
<section id="home">
<h2>Welcome to the Sports Blog</h2>
<p>Stay updated with the latest sports news, events, and insights from around the world.</p>
</section>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Section</title>
<style>
.contact-section {
background: linear-gradient(to right, #ff7a18, #af002d);
padding: 20px 0;
color: white;
display: flex;
justify-content: center;
align-items: center;
position: relative;
height: 200px;
/* Adjust as needed */
}
.ad-label {
position: absolute;
top: 10px;
left: 10px;
background-color: #ff8c00;
/* Ad label color */
color: white;
padding: 5px 15px;
font-size: 16px;
font-weight: bold;
border-radius: 20px;
}
.container {
text-align: center;
z-index: 10;
}
.content h2 {
font-size: 24px;
margin-bottom: 10px;
}
.content p {
font-size: 18px;
margin-bottom: 20px;
}
.buttons a {
display: inline-block;
margin: 10px;
padding: 10px 20px;
font-size: 16px;
text-decoration: none;
border-radius: 5px;
color: white;
background-color: #f50057;
transition: background-color 0.3s ease;
}
.buttons a:hover {
background-color: #ff1744;
}
.whatsapp-button {
background-color: #25d366;
}
.whatsapp-button:hover {
background-color: #128c7e;
}
.email-button {
background-color: #db4437;
}
.email-button:hover {
background-color: #c1351d;
}
</style>
</head>
<body>
<section class="contact-section">
<div class="ad-label">Ad</div> <!-- Ad label -->
<div class="container">
<div class="content">
<h2>Contact Us for Business Listings and DR Increase!</h2>
<p>Reach us on WhatsApp: +923027300168</a> & rockstarbeta01@gmail.com</a></p>
<div class="buttons">
<a href="https://wa.me/923027300168" class="whatsapp-button">Contact on WhatsApp</a>
<a href="mailto:rockstarbeta01@gmail.com" class="email-button">Send Email Inquiry</a>
</div>
</div>
</div>
</section>
<section id="news">
<h2>Latest News</h2>
<article>
<h3>Football Championship Results</h3>
<p>The recent football championship concluded with a thrilling final match. Learn about the results, key
highlights, and the MVP.</p>
<a href="#">Read more</a>
</article>
<article>
<h3>Basketball League Updates</h3>
<p>The ongoing basketball league has provided plenty of exciting moments. Check out the latest scores,
player performances, and team standings.</p>
<a href="#">Read more</a>
</article>
</section>
<section id="events">
<h2>Upcoming Events</h2>
<ul>
<li>Summer Olympics - Tokyo 2025</li>
<li>FIFA World Cup Qualifiers</li>
<li>NBA Finals 2025</li>
</ul>
</section>
<!-- Featured Posts Section -->
<section id="featured-posts">
<div class="post">
<h3>Champions League Finals Preview</h3>
<p>Get ready for the most anticipated match of the season as two football giants face off in the
Champions League Finals.</p>
<a href="#">Read more</a>
</div>
<div class="post">
<h3>Top 10 NBA Players to Watch</h3>
<p>Check out our list of the top 10 NBA players who are expected to shine this season and lead their
teams to victory.</p>
<a href="#">Read more</a>
</div>
<div class="post">
<h3>Breaking Records in Cricket</h3>
<p>This season, players are breaking records left and right. Discover the new records that have been set
in the world of cricket.</p>
<ul>
<a href="https://99firesecurity.com"></a>
<a href="https://majorityvoice.org"></a>
<a href="https://findhealthylifestyletips.com"></a>
<a href="https://annaswennlarsson.com"></a>
<a href="https://unitestockholm.se"></a>
<a href="https://floodmagazine.co.uk"></a>
<a href="https://pthalmstad.se"></a>
<a href="https://taco-bell-menu.net"></a>
<a href="https://strandshintanswers.com"></a>
<a href="https://growagarden-roblox.com"></a>
<a href="https://quranazeem.com"></a>
<a href="https://gblchemicalsonlineshop.com"></a>
<a href="https://techfuturize.com"></a>
<a href="https://torq.uk.com"></a>
<a href="https://inconnections.uk.com"></a>
<a href="https://geniustechnology.uk.com"></a>
<a href="https://tinylunchco.com"></a>
<a href="https://thelittleconnection.com"></a>
<a href="https://thinkbuzzing.com"></a>
<a href="https://247tasker.com"></a>
<a href="https://xocdia.art"></a>
<a href="https://thehometrotters.blog"></a>
<a href="https://neuroscentzfragrancetechnology.co.uk"></a>
<a href="https://adrianestarkstudio.com"></a>
<a href="https://alnijahquranacademy.com"></a>
<a href="https://lookwhatmomfoundgiveaways.blog"></a>
<a href="https://halifaxairporttaxilimo.com"></a>
<a href="https://completepestcontrolchristchurch.co.nz"></a>
<a href="https://techhiscox.com"></a>
<a href="https://buzzvibes.co.uk"></a>
<a href="https://chai-bubble.com"></a>
<a href="https://les-cariatides.fr"></a>
<a href="https://gigigourmet.fr"></a>
<a href="https://fletchapp.com"></a>
<a href="https://getbestbusinesscoach.com"></a>
<a href="https://worldbusinesscoaches.com"></a>
<a href="https://worldsbestbusinesscoach.com"></a>
<a href="https://amzdocconsultants.com"></a>
<a href="https://parkmagazineny.co.uk"></a>
<a href="https://thebrandzone.ae"></a>
<a href="https://allnewmagazine.com"></a>
<a href="https://blogmaagzine.com"></a>
<a href="https://moneymasterydigest.com"></a>
<a href="https://pub-creative.fr"></a>
<a href="https://solutions-transport.fr"></a>
<a href="https://finances-faciles.fr"></a>
<a href="https://reseaux-energie.fr"></a>
<a href="https://entreprise-redressement.fr"></a>
<a href="https://argent-quotidien.fr"></a>
<a href="https://obligations-comptables.fr"></a>
<a href="https://energie-innovation.fr"></a>
<a href="https://pros-transport.fr"></a>
<a href="https://mobilite-logistique.fr"></a>
<a href="https://compta-et-freelance.fr"></a>
<a href="https://decision-entreprise.fr"></a>
<a href="https://boost-publicite.fr"></a>
<a href="https://digital-publicite.fr"></a>
<a href="https://publicite-performance.fr"></a>
<a href="https://banque-et-assurance.fr"></a>
<a href="https://mes-conseils-finance.fr"></a>
<a href="https://mobilite-transport.fr"></a>
<a href="https://energie-panorama.fr"></a>
<a href="https://energie-et-performance.fr"></a>
<a href="https://thesparktime.com"></a>
<a href="https://austarlabs-ugl.bio"></a>
<a href="https://trehouse.us"></a>
<a href="https://worldemergencyassociation.com"></a>
</ul>
<a href="#">Read more</a>
</div>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>If you have any questions, feel free to reach out to us!</p>
</section>
</main>
<!-- Footer Section -->
<footer>
<p>© 2025 Sports Blog. All rights reserved.</p>
</footer>
</body>
</html>