Input
Output
<!DOCTYPE html> <html lang="en"> <head> <style> div { padding: 10px 20px 30px 40px; /* top right bottom left */ } </style> </head> <body> <h1>Important Heading</h1> <div>The padding property is used to create space inside an element, between the content and its border.</div> </body> </html>