<!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>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 50px 20px;
background-color: #f4f4f4;
color: #333;
}
.container {
max-width: 600px;
margin: auto;
text-align: center;
background: #fff;
padding: 40px 20px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.container img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 20px;
}
.btn-download {
display: inline-block;
padding: 12px 24px;
font-size: 16px;
color: #fff;
background-color: #1e90ff;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s ease;
margin-top: 20px;
}
.btn-download:hover {
background-color: #0066cc;
}
</style>
</head>
<body>
<div class="container">
<h1>Download Our PDF</h1>
<p>Click the button below to get your file.</p>
<!-- ✅ Image here (replace with your image path) -->
<img src="your-image.jpg" alt="PDF Preview" />
<!-- ✅ PDF download button -->
<a href="your-file.pdf" download class="btn-download">
Download PDF
</a>
</div>
</body>
</html>