<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; text-align: center; }
header { background: #34495e; color: white; padding: 40px 0; }
h1 { margin: 0; }
p { color: #ddd; }
section { padding: 20px; }
.card {
background: white;
padding: 20px;
margin: 10px auto;
width: 80%;
max-width: 400px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<header>
<h1>My Portfolio</h1>
<p>Front-End Developer | Web Designer</p>
</header>
<section>
<div class="card">
<h2>Project 1</h2>
<p>Landing Page for Travel Website</p>
</div>
<div class="card">
<h2>Project 2</h2>
<p>Restaurant Landing Page</p>
</div>
</section>
</body>
</html>