<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Soccer Blogger</title>
<style>
/* Basic CSS styles for the template */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
nav ul {
list-style-type: none;
padding: 0;
display: flex;
justify-content: center;
margin: 0;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
main {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.post {
margin-bottom: 30px;
}
.post h2 {
color: #333;
}
.post p {
line-height: 1.6;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 15px 0;
position: relative;
}
.social-icons a {
color: #fff;
margin: 0 10px;
text-decoration: none;
font-size: 18px;
}
</style>
</head>
<body>
<!-- Header section with navigation -->
<header>
<h1>Soccer Blogger</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#latest">Latest Posts</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Main content area for blog posts -->
<main>
<!-- Blog Post 1 -->
<div class="post">
<h2>The Ultimate Guide to Soccer Skills</h2>
<p><small>Published on October 20, 2024</small></p>
<p>Soccer is a game of skill, precision, and strategy. In this guide, we’ll dive deep into the most essential skills every player should master...</p>
<a href="#">Read more</a>
</div>
<!-- Blog Post 2 -->
<div class="post">
<h2>Top 10 Soccer Players of All Time</h2>
<p><small>Published on October 15, 2024</small></p>
<p>Throughout history, certain players have stood out for their incredible talent and impact on the game. Here are the top 10 soccer players who made history...</p>
<a href="#">Read more</a>
</div>
</main>
<!-- Footer section with social media links -->
<footer>
<p>© 2024 Soccer Blogger. All rights reserved.</p>
<div class="social-icons">
<a href="#">Facebook</a> |
<a href="#">Twitter</a> |
<a href="#">Instagram</a>
</div>
</footer>
</body>
</html>