Psyduck - 可達鴨 之 鴨力山大
Current File : /home/irplbiz/public_html/goldex/dev/index.html |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Download PDF</title>
</head>
<body>
<button id="downloadBtn">Download PDF</button>
<script>
document.getElementById("downloadBtn").addEventListener("click", function () {
const link = document.createElement('a');
link.href = 'https://irpl.biz/goldex/wp-content/uploads/2025/02/Domestic-Catalogue-2025-E-Catalogue.pdf'; // Replace with your PDF file path
link.download = 'Domestic-Catalogue-2025-E-Catalogue.pdf'; // Replace with the desired file name
link.click();
});
</script>
</body>
</html>