-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 749 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8" />
<title>Download PDF</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
}
a.download-btn {
display: inline-block;
padding: 12px 24px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 6px;
font-size: 16px;
}
a.download-btn:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<h1>Scarica il tuo PDF</h1>
<p>Clicca il pulsante qui sotto per scaricare il file:</p>
<a href="documento.pdf" download class="download-btn">Scarica PDF</a>
</body>
</html>