<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Your Name | Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #333;
background-color: #f4f4f4;
}
header {
background-color: #222;
color: white;
padding: 40px 20px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
nav {
background-color: #444;
text-align: center;
padding: 10px 0;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
section {
padding: 40px 20px;
max-width: 800px;
margin: auto;
background-color: white;
margin-top: 20px;
border-radius: 5px;
}
h2 {
color: #222;
}
footer {
text-align: center;
padding: 20px;
background-color: #222;
color: white;
margin-top: 40px;
}
</style>
</head>
<body>
<header>
<h1>Your Name</h1>
<p>Web Developer | Designer | Creator</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
<section id="about">
<h2>About Me</h2>
<p>Hello! I’m a web developer passionate about building clean and responsive websites. I enjoy turning ideas into reality using code and design. When I'm not coding, you’ll find me reading, exploring, or sketching new ideas.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li><strong>Project One:</strong> A responsive landing page built with HTML and CSS.</li>
<li><strong>Project Two:</strong> A to-do list app using vanilla JavaScript.</li>
<li><strong>Project Three:</strong> A personal blog layout designed with accessibility in mind.</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Want to connect or work together?</p>
<p>Email: <a href="mailto:your.email@example.com">your.email@example.com</a></p>
<p>GitHub: <a href="https://github.com/yourusername" target="_blank">yourusername</a></p>
<p>LinkedIn: <a href="https://linkedin.com/in/yourprofile" target="_blank">Your Name</a></p>
</section>
<footer>
<p>© 2025 Your Name. All rights reserved.</p>
</footer>
</body>
</html>