Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .green::-moz-selection { color: #8ebf42; } .green::selection { color: #8ebf42; } .purple::-moz-selection { color: #b30cb3; } .purple::selection { color: #b30cb3; } .orange::-moz-selection { color: #ffa500; } .orange::selection { color: #ffa500; } .lightblue::-moz-selection { color: #add8e6; } .lightblue::selection { color: #add8e6; } </style> </head> <body> <p class="green"> Select this text to see the green font color. </p> <p class="orange"> Select this text to see the orange font color. </p> <p class="purple"> Select this text to see the purple font color. </p> <p class="lightblue"> Select this text to see the lightblue font color. </p> </body> </html>