Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> <style> p::before { content: open-quote; } p::after { content: close-quote; } </style> </head> <body> <h2>Пример свойства content</h2> <p>Привет, меня зовут Джон.</p> <p>Я из Канады.</p> </body> </html>