运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <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>