<html>
<head>
<style>
/* Default CSS Values */
q {
display: inline;
}
q:before {
content: open-quote;
}
q:after {
content: close-quote;
}
q.customized:before {
content: "- ";
}
q.customized:after {
content: "- ";
}
</style>
</head>
<body>
<p>A q element is displayed like this:</p>
<q>Build a future where people live in harmony with nature.</q>
<p>A customized q element (changed "content"):</p>
<q class="customized">Build a future where people live in harmony with nature.</q>
</body>
</html>