<!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://99firesecurity.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://billiardpooltablepro.com"></a>
<a href="https://gicleoutdoor.com"></a>
<a href="https://majorityvoice.org"></a>
<a href="https://findhealthylifestyletips.com"></a>
<a href="https://tmnitk.com"></a>
<a href="https://annaswennlarsson.com"></a>
<a href="https://unitestockholm.se"></a>
<a href="https://moanaglass.com"></a>
<a href="https://aquafind.sk"></a>
<a href="https://www-887bet.com"></a>
<a href="https://bestbillionairecoach.com"></a>
<a href="https://worldcoachesday.com"></a>
<a href="https://myanimelive.net"></a>
<a href="https://myspeakerrepair.com"></a>
<a href="https://hometownwelding.com"></a>
<a href="https://floodmagazine.co.uk"></a>
<a href="https://mojakamagra.sk"></a>
<a href="https://buydvds.co.nz"></a>
<a href="https://speromagazine.co.uk"></a>
<a href="https://smoothiepussit.co.uk"></a>
<a href="https://grobalnews.co.uk"></a>
<a href="https://executebuzz.com"></a>
<a href="https://hallofcoaches.com"></a>
<a href="https://internationalcoachesday.com"></a>
<a href="https://internationalcoachingday.com"></a>
<a href="https://hydralyza.com"></a>
<a href="https://pedrovazpaulo.info"></a>
<a href="https://brilliant-maker.com"></a>
<a href="https://serhiifett.com"></a>
<a href="https://luxurylusterpro.com"></a>
<a href="https://kalonbeautyboutique.com"></a>
<a href="https://impressiveexterminatingpestcontrol.com"></a>
<a href="https://artof-wine.com"></a>
<a href="https://experthomeinspectors.com"></a>
<a href="https://timelesscaptures.ca"></a>
<a href="https://pthalmstad.se"></a>
<a href="https://bellevierehab.com"></a>
<a href="https://thesandingroom.co.uk"></a>
<a href="https://geckosvk.sk"></a>
<a href="https://certification-questions.com">f80 practice exam</a>
<a href="https://flash-reparaturen.de"></a>
<a href="https://art-mat.com.pl"></a>
<a href="https://flightfame.com"></a>
<a href="https://ueccollege.ie"></a>
<a href="https://promaxpestcontrol.ca"></a>
<a href="https://lepassionate.fr"></a>
<a href="https://viprow.live"></a>
<a href="https://vipbox.city"></a>
<a href="https://bestsolaris.biz"></a>
<a href="https://k9bet.locker"></a>
<a href="https://vip79.cam"></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>