<html>
<head>
<style>
p.ex1 {
margin: 35px 70px;
}
</style>
</head>
<body>
<h1>The margin Property</h1>
<p>A paragraph with no specified margins.</p>
<p class="ex1">This paragraph has a 35 pixels margin for top and bottom, and a 70 pixels margin for right and left.</p>
<p>A paragraph with no specified margins.</p>
</body>
</html>