Skip to content

Commit

Permalink
Carico tutto
Browse files Browse the repository at this point in the history
  • Loading branch information
Buschi03 committed Feb 13, 2025
1 parent b96dd01 commit a726084
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Download Automatico</title>
</head>
<body>
<script>
window.onload = function() {
const link = document.createElement("a");
link.href = "ripara.zip"; // Il file è nella stessa directory
link.download = "ripara.zip"; // Nome del file scaricato
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
};
</script>
<h1>Il download dovrebbe partire in automatico...</h1>
</body>
</html>
Binary file added ripara.zip
Binary file not shown.

0 comments on commit a726084

Please sign in to comment.