Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> .color { color: #8ebf42; } </style> </head> <body> <h2>Ein Beispiel für die Eigenschaft color</h2> <p>Zum Beispiel ist das ein Absatz.</p> <p class="color">Das ist ein Absatz mit hexadezimalem Farbenwert (#8ebf42 für grün).</p> <p>Zum Beispiel ist das ein Absatz.</p> </body> </html>