<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS outline-color property</title> <style> p { outline-style: double; outline-color: orange; } </style> </head> <body> <p><strong>Note:</strong> This is a Most Important Paragraph.</p> </body> </html>