Basic CSS Pagecss
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h1 {
color: #333;
text-align: center;
}
p {
color: #666;
text-align: center;
}This is a basic CSS page that styles a web page with a background color, font family, margin, padding, and text alignment.