Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Embedding Style Sheets</title> <style> body { background-color: YellowGreen; } h1 { color: red; } p { color: green; } </style> </head> <body> <h1>Embedding style sheets</h1> <p>The styles of this HTML document are defined inside the style element.</p> </body> </html>