Untitled
unknown
plain_text
8 months ago
1.6 kB
2
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Delta - Download</title> <style> body { margin: 0; padding: 0; font-family: 'Arial', sans-serif; background: linear-gradient(135deg, #1d1d1d, #414141); color: white; text-align: center; height: 100vh; display: flex; align-items: center; justify-content: center; flex-direction: column; } .header { font-size: 2rem; margin-bottom: 20px; } .subheader { font-size: 1.5rem; margin-bottom: 30px; } .download-button { background: linear-gradient(135deg, #5757ff, #ae53f0); color: white; border: none; padding: 15px 30px; font-size: 1.2rem; cursor: pointer; transition: background 0.3s; } .download-button:hover { background: linear-gradient(135deg, #4a4aff, #9c47e0); } .learn-more { color: #ccc; text-decoration: none; font-size: 1rem; display: inline-block; margin-top: 20px; } </style> </head> <body> <div class="content"> <div class="header">Delta</div> <div class="subheader">Revolutionizing the future of execution</div> <button class="download-button" onclick="downloadFile()">Download</button> <a href="#learn-more" class="learn-more">Learn more</a> </div> <script> function downloadFile() { // You would need to implement this function to initiate a file download. // For example, you could point to a URL that serves the file: window.location.href = 'path/to/your/downloadable/file.zip'; } </script> </body> </html>
Leave a Comment