आईडी ="ट्यूटोरियल" वाले सभी तत्वों का चयन करने के लिए, आप निम्न कोड चलाने का प्रयास कर सकते हैं।
इसे प्राप्त करने के लिए #id CSS चयनकर्ता का उपयोग करें,
उदाहरण
<!DOCTYPE html>
<html>
<head>
<style>
#tutorials {
border: 3px solid red;
}
</style>
</head>
<body>
<h1>Tutorialspoint</h1>
<h2>Learning</h2>
<p id = "tutorials">Tutorials on web dev, programming, database, networking, etc.</p>
<p>Every tutorials has lessons with illustrations and figures.</p>
</body>
</html>