CSS Colors
<!DOCTYPE html> <html> <head> <style> h1 { color: tomato; } body { background-color: whitesmoke; } </style> </head> <body> <h1>Tomato Heading</h1> <p>Some body text.</p> </body> </html>
<!DOCTYPE html> <html> <head> <style> h1 { color: tomato; } body { background-color: whitesmoke; } </style> </head> <body> <h1>Tomato Heading</h1> <p>Some body text.</p> </body> </html>