Untitled
unknown
plain_text
16 days ago
790 B
1
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> .textured-text { font-size: 36px; font-weight: bold; color: #003366; background: linear-gradient(135deg, #cccccc 25%, transparent 25%), linear-gradient(225deg, #cccccc 25%, transparent 25%), linear-gradient(45deg, #cccccc 25%, transparent 25%), linear-gradient(315deg, #cccccc 25%, #ffffff 25%); background-size: 10px 10px; background-position: 0 0, 0 5px, 5px -5px, -5px 0px; padding: 10px; text-align: center; } </style> </head> <body> <div class="textured-text">Start a Professional Business</div> </body> </html>
Leave a Comment