The following example shows how the quotes element works in HTML.
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=8"/>
<title>QUOTES Example</title>
<style type="text/css">
/* Define quote characters */
q { quotes: '"' '"' }
/* Define pseudo-class triggers */
q:before { content: open-quote }
q:after { content: close-quote }
</style>
</head>
<body>
<p><q>When I die, I'm donating my body to science fiction.</q><em> ~ Stephen Wright</em></p>
</body>
</html>