x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
    .ex1{
6
        quotes: "'" "'";
7
    }
8
    .ex2{
9
        quotes: "„" "“" "‚" "‘";
10
    }
11
</style>
12
</head>
13
<body>
14
15
<h1>The quotes property</h1>
16
17
<q class="ex1">This is a quote.</q>
18
<br><br>
19
<q class="ex2">This is a <q>quote</q> inside a quote.</q>
20
21
</body>
22
</html>