Zigzag Pattern 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>Zigzag Pattern HR</title> <style> body { font-family: Arial, sans-serif; background-color: #fff3e0; padding: 20px; } .zigzag-pattern-hr { border: none; height: 10px; background: linear-gradient(to right, #ff6f61 50%, #ff6f61 50%); background-size: 10px 10px; margin: 50px 0; } </style> </head> <body> <h1>Zigzag Pattern Horizontal Rule</h1> <p>This horizontal rule features a zigzag pattern for a dynamic look.</p> <hr class="zigzag-pattern-hr"> </body> </html>