<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Writing Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Welcome to My Writing Portfolio</h1>
<p>Introduction</p>
</section>
<section id="about">
<h2>About Me</h2>
<p>Brief bio and contact info.</p>
</section>
<section id="portfolio">
<h2>My Writing Portfolio</h2>
<div class="portfolio-sections">
<div class="section">
<h3>Website 1</h3>
<p>Excerpts or links to articles.</p>
</div>
<div class="section">
<h3>Website 2</h3>
<p>Excerpts or links to articles.</p>
</div>
<!-- Repeat for other websites -->
</div>
</section>
</main>
</body>
</html>