<!DOCTYPE html>
<html>
<head>
<style>
p::before {
content: open-quote;
}
p::after {
content: close-quote;
</style>
</head>
<body>
<p>我叫唐纳德</p>
<p>我住在达克斯堡</p>
<p><b>注意:</b>没有“开引号”就不能有“闭引号”。</p>
</body>
</html>