<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Website</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 100px;
background-color: #f5f5f5;
}
h1 { color: #333; }
p { color: #555; }
</style>
</head>
<body>
<h1>Welcome to My Website 🚀</h1>
<p>This is my MVP landing page.</p>
</body>
</html>