Abstract Lines - 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>Abstract Lines</title> <style> body, html { margin: 0; padding: 0; /* overflow: hidden; */ height: 100%; background: #111; /* display: flex; */ align-items: center; justify-content: center; } .lines { width: 100%; height: 100%; background: repeating-linear-gradient( -45deg, #6b6b6b, #6b6b6b 10px, #111 10px, #111 20px ); } </style> </head> <body> <div class="lines"></div> </body> </html>