Sunday, July 2, 2017

Show the structure of h1,p and div elements.

The <h1>, <p>, and <div> elements have different background colors:

Example

h1 {
    background-color: red;
}

div {
    background-color: blue;
}

p {
    background-color: black;
}