#give me a html coding for a simple
1 messages · Page 1 of 1 (latest)
<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>My Portfolio</h1>
<nav>
<ul>
<li><a href="#about-me">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about-me">
<h2>About Me</h2>
<p>Insert your bio and skills here.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<p>Insert your project descriptions and links here.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Insert your contact details and a contact form here.</p>
</section>
</main>
<footer>
<p>© Your Name 2021</p>
</footer>
</body>
</html>