<!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>
<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://calculatorusaapp.com">Free BMI Calculator</a>
<a href="https://www.ellwick.com"></a>
<a href="https://www.commerciallightrepairs.com"></a>
<a href="https://www.samuelkreitmeir.com"></a>
<a href="https://www.interlockpreps.ca"></a>
<a href="https://deluxetrappen.nl"></a>
<a href="https://www.trinity8solutions.com"></a>
<a href="https://realpornsites.com"></a>
<a href="https://99firesecurity.com"></a>
<a href="https://spotteddalmatianpups.com"></a>
<a href="https://5dingediemanwissenmuss.de"></a>
<a href="https://marvelteacuppuppies.com"></a>
<a href="https://orientalshorthaircatbuy.com"></a>
<a href="https://nordend-kreative.de"></a>
<a href="https://skyfootball.nl"></a>
<a href="https://worldinfootball.nl"></a>
<a href="https://illustrasports.nl"></a>
<a href="https://deadspinsports.nl"></a>
<a href="https://78sports.nl/"></a>
<a href="https://weezmsports.nl"></a>
<a href="https://worldsport25.nl"></a>
<a href="https://worldsupersports.nl"></a>
<a href="https://7sportsnetwork.nl"></a>
<a href="https://yardbarksports.nl"></a>
<a href="https://redroostermenu.com"></a>
<a href="https://jiligamingslotgame.id"></a>
<a href="https://preniumslot.id"></a>
<a href="https://slotgameintexas.id"></a>
<a href="https://vegasslotonline.id"></a>
<a href="https://slotsdeluxe.id"></a>
<a href="https://tropicanaslot.id"></a>
<a href="https://govivaoman.com"></a>
<a href="https://konamigaming.forum"></a>
<a href="https://leandergames.forum"></a>
<a href="https://evolutiongaming.forum"></a>
<a href="https://fantasmagames.forum"></a>
<a href="https://nolimitcity.forum"></a>
<a href="https://redtigergaming.forum"></a>
<a href="https://microgaming.forum"></a>
<a href="https://hacksawgaming.forum"></a>
<a href="https://onetouchgames.forum"></a>
<a href="https://tpmaaster.com"></a>
<a href="https://checkfootballmatch.de"></a>
<a href="https://historyofsports.de"></a>
<a href="https://thewikisport.de"></a>
<a href="https://colinsports.de"></a>
<a href="https://forumsports.de"></a>
<a href="https://todayinsport.de"></a>
<a href="https://consolatee.com"></a>
<a href="https://glitzmag.co.uk"></a>
<a href="https://strategicscanada.com"></a>
<a href="https://bang-bangtactical.com"></a>
<a href="https://hiphotobooths.com"></a>
<a href="https://zumorrud.com"></a>
<a href="https://boutiqswitchdisposables.org"></a>
<a href="https://dubinskopranjelux.com"></a>
<a href="https://royal-peptides.com"></a>
<a href="https://conceptlottery.com"></a>
<a href="https://valariancouch.com"></a>
<a href="https://fc188.net.ph"></a>
<a href="https://activemyhouse.com"></a>
<a href="https://aibabbage.com"></a>
<a href="https://ferventgiftservice.com"></a>
<a href="https://designworksgaming.us"></a>
<a href="https://redrakegaming.us"></a>
<a href="https://nucleusgaming.us"></a>
<a href="https://netgameentertainment.us"></a>
<a href="https://mmogameslots.us"></a>
<a href="https://slotspyramid.us"></a>
<a href="https://handicapperbadshatips.com"></a>
<a href="https://wottriggerpro.com"></a>
<a href="https://gicleoutdoor.com"></a>
<a href="https://majorityvoice.org"></a>
<a href="https://reflexsat.com"></a>
<a href="https://paintingzen.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>