Dual Tone Hr - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Dual Tone HR</title> <style> body { font-family: Arial, sans-serif; background-color: #f1f1f1; padding: 20px; } .dual-tone-hr { border: none; height: 4px; background: linear-gradient(to right, #ff6f61, #6b5b95); margin: 50px 0; } </style> </head> <body> <h1>Dual Tone Horizontal Rule</h1> <p>A horizontal rule with a sleek dual-tone gradient.</p> <hr class="dual-tone-hr"> </body> </html>