<!DOCTYPE html>
<html>
<head>
<style>
body
{
font-family:verdana;
margin-left:210px;
background:#5d9ab2 url('img_tree.png') no-repeat 10px 5px;
}
.container
{
text-align:center;
}
.center_div
{
border:1px solid gray;
margin-left:auto;
margin-right:auto;
width:90%;
height:340px;
background-color:#d0f0f6;
text-align:left;
padding:8px;
}
</style>
</head>
<body>
<div class="container">
<div class="center_div">
<h1>CSS Demo</h1>
<p>With CSS you can create good-looking websites with nice effects.</p>
<p>With CSS you can control the text (like font, color, size, etc.), and the layout (like backgrounds, margin, padding, etc.) of a website, in one single file!</p>
<p>With CSS you save a lot of work!</p>
</div>
</div>
</body>
</html>
<body>