<html>
<head>
<style>
body {
background-color:#E7E9EB;
}
#myDIV {
height:300px;
background-color:#FFFFFF;
quotes: '�' '�' '�' '�';
}
</style>
</head>
<body>
<h1>The quotes property</h1>
<div id="myDIV">
<p><q>This is a quote</q></p>
<p><q>This is a <q>quote</q> inside a quote</q></p>
</div>
</body>
</html>