<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Corporate Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to Our Corporate Blog</h1>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
</header>
<main>
<article>
<h2>First Blog Post</h2>
<p>This is a placeholder post on your corporate blog. Start blogging today!</p>
</article>
</main>
<footer>
<p>Follow us on:
<a href="#">Facebook</a> |
<a href="#">Twitter</a> |
<a href="#">LinkedIn</a>
</p>
</footer>
</body>
</html>