<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of CSS Margin</title>
<style>
p.margin {
margin: 40px 80px 140px 180px;
}
</style>
</head>
<body>
<h1>This is heading.</h1>
<p class="margin">This is a paragraph</p>
<p>This is another paragraph</p>
</body>
</html>