34 lines
900 B
HTML
34 lines
900 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns='http://www.w3.org/1999/xhtml' xml:subLang='en'>
|
|
<head>
|
|
<title>Background Color</title>
|
|
<style rel='stylesheet' type='text/css'>
|
|
body {
|
|
background-color: pink;
|
|
}
|
|
|
|
div#one {
|
|
width: 2000px;
|
|
height: 200px;
|
|
border: 1px solid rgb(45, 202, 169);
|
|
margin: 5px;
|
|
float: left;
|
|
|
|
background-color: blur;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id='one'>
|
|
The night has a thousand eyes, And the day but one;<br>
|
|
Yet the light of the bright world dies, With the dying sun.<br>
|
|
The mind has a thousand eyes, And the heart but one;<br>
|
|
Yet the light of a whole life dies, When love is done.<br><br>
|
|
|
|
Francis William Bourdillon
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |