Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
style
>
#p01
{
color
:
blue
;
}
<
/style
>
<
/head
>
<
body
>
<
p
>
This is a paragraph.
<
/p
>
<
p
>
This is a paragraph.
<
/p
>
<
p
id
="p01"
>
I am different.
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <style> #p01 { color: blue; } </style> </head> <body> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p id="p01">I am different.</p> </body> </html>
Result:
Privacy Policy