CSS Colors
<!DOCTYPE html> <html> <head> <style> p { color: #ff6347; } </style> </head> <body> <p>This paragraph is tomato colored.</p> </body> </html>
<!DOCTYPE html> <html> <head> <style> p { color: #ff6347; } </style> </head> <body> <p>This paragraph is tomato colored.</p> </body> </html>