<html>
<head>
<style>
#a {
quotes: "'" "'";
}
#b {
quotes: "�" "�" "�" "�";
}
#c {
quotes: "�" "�" "�" "�";
}
</style>
</head>
<body>
<h1>The quotes Property</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>