<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Styled Page</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 40px;
}
h1 {
color: #333;
}
p {
font-size: 16px;
color: #555;
}
a {
color: #007BFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.box {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
max-width: 500px;
}
</style>
</head>
<body>
<div class="box">
<h1>Hello, CSS!</h1>
<p>This is a styled paragraph. Here's a <a href="#">link</a>.</p>