Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> .color { color: rgb(142, 191, 66); } </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 einem RGB-Farbenwert.</p> <p>Zum Beispiel ist das ein Absatz.</p> </body> </html>