Entradas

Mostrando las entradas de febrero, 2024

Ig

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Descargar</title> <style>     body {         font-family: Arial, sans-serif;         text-align: center;     }     .button {         display: inline-block;         padding: 10px 20px;         font-size: 16px;         color: white;         background-color: red;         border: 2px solid red;         border-radius: 5px;         cursor: pointer;         transition: border-color 0.5s;     }     .button:hover {         border-color: green;     } </style> </head> <body>     <button id="downloadButton" class="button">DESCARGAR</button>     <script>         var isDownloading = false;         var downloadButton = document.getElementById("downloadButton");         downloadButton.addEventListener("cli