TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> :root { --main-bg-color: lightblue; --main-text-color: darkblue; } body { background-color: var(--main-bg-color); color: var(--main-text-color); } h1 { color: var(--main-text-color); } </style> </head> <body> <h1>Using CSS Variables</h1> <p>The background and text colors are defined in :root.</p> </body> </html>