Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
style
>
div p
{
background-color
:
yellow
;
}
<
/style
>
<
/head
>
<
body
>
<
h1
>
Welcome to My Homepage
<
/h1
>
<
div
>
<
h2
>
My name is Donald
<
/h2
>
<
p
>
I live in Duckburg.
<
/p
>
<
/div
>
<
p
>
My best friend is Mickey.
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <style> div p { background-color: yellow; } </style> </head> <body> <h1>Welcome to My Homepage</h1> <div> <h2>My name is Donald</h2> <p>I live in Duckburg.</p> </div> <p>My best friend is Mickey.</p> </body> </html>
Result:
Privacy Policy