xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>My First Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: lightgray;
}
h1 {
color: navy;
}
p {
color: black;
}
</style>
</head>
<body>
<h1>Welcome to My First Webpage</h1>
<p>This is an example paragraph. Feel free to add your own content!</p>
</body>
</html>