0% found this document useful (0 votes)
10 views1 page

CSS Code for Styled Web Page

The document is an HTML page with a styled layout using CSS. It features a heading, a paragraph, and a link, all contained within a styled box. The design includes a light background, specific font styles, and hover effects for the link.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views1 page

CSS Code for Styled Web Page

The document is an HTML page with a styled layout using CSS. It features a heading, a paragraph, and a link, all contained within a styled box. The design includes a light background, specific font styles, and hover effects for the link.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

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>

You might also like