Ví dụ 1
RUN
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Emphasis Marks</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> body { display: flex; justify-content: center; align-items: center; } span { -webkit-text-emphasis: double-circle filled; -webkit-text-emphasis-color: blue; text-emphasis: double-circle filled; text-emphasis-color: blue; } </style> </head> <body> <div> <p>W<span>o</span>rld W<span>ide</span> Web</p> </div> </body> </html>
PHÓNG TO