attr() CSS फ़ंक्शन CSS का उपयोग करके चयनित तत्व की विशेषता का मान देता है
आप सीएसएस में attr() फ़ंक्शन को लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं
उदाहरण
<!DOCTYPE html> <html> <head> <style> a:before {content: " (" attr(href) ")";} </style> </head> <body> <h2>Information Resource</h2> <p>Resource: <a href = "https://www.qries.com">Welcome to Qries </a></p> </body> </html>