Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS Margin</title> <style> p.margin { margin-top:35px; margin-right:10px; margin-bottom:75px; margin-left:55px; } </style> </head> <body> <h1>This is heading.</h1> <p class="margin">This is a paragraph</p> <p>This is another paragraph</p> </body> </html>