Use the margin property to set the top and bottom margins for <h1> to "60px", and left and right margins to "30px". <!DOCTYPEhtml> <html> <head> <style> h1 { background-color: lightblue; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> </body> </html>
Answers
Answered by
0
Answer:
Explanation:
h1{
margin: 60px 30px;
background-color:lightblue;
}
Similar questions