Input
Output
<!DOCTYPE html> <html lang="en"> <head> <style> h1::before { content: ">> "; color: red; } h1::after { content: " <<"; color: red; } </style> </head> <body> <h1>Important Heading</h1> </body> </html>