TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> h1 + p { color: blue; } </style> </head> <body> <h1>Heading 1</h1> <p>This paragraph is styled.</p> <p>This paragraph is not styled.</p> </body> </html>