<!DOCTYPE html> <html> <head> <title>HTML style tag</title> <style type="text/css"> h1 { color: red; } p { color: yellow; } </style> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>
<!DOCTYPE html> <html> <head> <title>HTML style tag</title> <style type="text/css"> h1 { color: red; } p { color: yellow; } </style> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>