title
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Business Blog</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS stylesheet -->
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blogs.html">Blogs</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- Home Page -->
<section id="home">
<h1>Welcome to the Business Blog</h1>
<p>Explore articles on Business Marketing, International Marketing, Communication in Business, Business World, and Business Stories.</p>
</section>
</main>
<footer>
<p>© 2023 Business Blog</p>
</footer>
</body>
</html>