Example input
Design a personal portfolio website
Create an HTML and CSS website to showcase your skills, projects, and experience. Include sections like About Me, Portfolio, Resume, and Contact...........
Example output
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header -->
<header>
<!-- Navigation -->
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- About Me Section -->
<section id="about">
<h2>About Me</h2>
<p>Your description goes here.</p>
</section>
<!-- Portfolio Section -->
<section id="portfolio">
<h2>Portfolio</h2>
<!-- Add your projects here -->
</section>
<!-- Resume Section -->
<section id="resume">
<h2>Resume</h2>
<!-- Add your resume content here -->
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Contact</h2>
<!-- Add your contact form or contact information here -->
</section>
<!-- Footer -->
<footer>
<p>© 2023 Your Name. All rights reserved.</p>
</footer>
</body>
</html>