<!
DOCTYPE html>
<html>
<head>
<title>My First Website</title>
<style>
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
h1 {
color: #333;
}
</style>
</head>
<body>
<h1>Welcome to My First Website!</h1>
<p>This is a simple website created to run in Visual Studio Code.</p>
</body>
</html>