Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> p::before { content: open-quote; } p::after { content: close-quote; } </style> </head> <body> <h2>Content property example</h2> <p>Hello, my name is John</p> <p>I am from Canada</p> </body> </html>