Using open-quote and close-quote with pseudo elements in CSS.
by jshacker
HTML
<h1>Never say never.</h1>
CSS
h1::before,
h1::after {
content: open-quote;
font-size: 1.5em;
font-family: verdana;
}
h1::after {
content: close-quote;
}