Prev Demo
CSS3
>
Color
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> p { color: green; } div { color: orange; } body { color: blue; } .class { color: violet; } </style> <p>This is 'P' element.</p> <br /> <div> This is 'DIV' element. </div> <br /> <b>This is BOLD content.</b> <form class="class"> Enter Name<input type="text" /> </form> </body> </html>
Note: We DO NOT save your trial code in our database.
Output