<!DOCTYPE html>
<html>
<head>
<title>Margins</title>
<style>
body {
color:#000000;
background-color:#ffffff;
font-family:arial, verdana, sans-serif;
font-size:12px;}
p { margin-top:40px; margin-bottom:30px; margin-left:20px; margin-right:20px;
border-style:solid; border-width:1px; border-color:#000000;}
em {background-color:#cccccc; margin-left:20px; margin-right:20px;}
</style>
</head>
<body>
<h1>margin Properties</h1>
<p>This paragraph will contain some <em>keywords</em>, which will have added shading and a larger <em>margin</em> around them. You will see that the <em>left</em> and <em>right</em> of these elements are sperad wider than other words.</p>
<p>Each <em>keyword</em> also has a <em>background-color</em> property set to illustrate where the edge of the elment is and enhance the effect of the <em>margin</em>.</p>
<p>Between each <em>paragraph</em> there is also a top and bottom margin, although only the top one will show between paragraphs because of the smaller vertical margin <em>collapsing</em> into the larger one.</p>
</body>
</html>