CSS in HTML Datei schreiben (Beispiel) By Mario2022-05-05Web-developement <!DOCTYPE html> <html lang="de-DE"> <head> <title>Test</title> <style type="text/css"> * {     color: white;     font-family: Tahoma; } a {     color: green; } a:hover {     color: gold; } </style> </head> <body bgcolor="black"> <center> <br> <!-- HTML Kommentar --!> <a href="https://www.freytag.xyz">Click here to go to my homepage.</a> </center> </body> </html>