CSS Colors
<!DOCTYPE html> <html> <head> <style> p { color: rgb(255, 99, 71); } </style> </head> <body> <p>This paragraph is tomato colored.</p> </body> </html>
<!DOCTYPE html> <html> <head> <style> p { color: rgb(255, 99, 71); } </style> </head> <body> <p>This paragraph is tomato colored.</p> </body> </html>