तत्वों का चयन करने के लिए, तत्व चयनकर्ता का उपयोग करें।
तत्वों का चयन करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं:
उदाहरण
<!DOCTYPE html> <html> <head> <style> p { color: blue; background-color: orange; } </style> </head> <body> <h1>Demo Website</h1> <h2>Learning</h2> <p>Tutorials on web dev, programming, database, networking, etc.</p> <p>Every tutorials has lessons with illustrations and figures.</p> </body> </html>