TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <style> #p1 { background-color: yellow; } #p2 { background-color: rgb(255, 163, 132); } #p3 { background-color: hsl(190, 46%, 63%); } </style> </head> <body> <p>A paragraph with default background color.</p> <p id="p1">A paragraph with background color.</p> <p id="p2">A paragraph with background color using RGB.</p> <p id="p3">A paragraph with background color using HSL.</p> </body> </html>