HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <h1>CSS quotes Property</h1> <p><q>This is a paragraph.</q></p> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("q")[0]; function myFunction(){ x.style.quotes = '"¯" "*"'; } </script> <p><strong>Note</strong>: Click on the button to change the quotes from default to custom.</p> </body> </html>
OUTPUT
×

Save as Private