Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .blue { color: #1c87c9; } </style> </head> <body> <h2>Color property example</h2> <p>This is some paragraph for example.</p> <p class="blue">This is some paragraph with blue color.</p> <p>This is some paragraph for example.</p> </body> </html>