PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> #a { quotes: "'" "'"; } #b { quotes: "�" "�" "�" "�"; } #c { quotes: "�" "�" "�" "�"; } </style> </head> <body> <h1>quotes property example</h1> <p><q id="a">This is a quote.</q></p> <p><q id="b">This is a <q>quote</q> inside a quote.</q></p> <p><q id="c">This is a <q>quote</q> inside a quote.</q></p> </body> </html>