x
1
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8">
5
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6
<title>HTML Download Links</title>
7
</head>
8
<body>
9
<h1>HTML Download Links</h1>
10
<p><a href="files/test.zip" download="Local_Test.zip">Download Local Zip file</a></p>
11
12
<p><a href="files/masters.pdf" download>Download Local PDF file</a></p>
13
<p>
14
<strong>Note:</strong>This is just an example, and the file cannot be downloaded because it is not present on the local device.
15
</p>
16
</body>
17
</html>
HTML Download Links
Note:This is just an example, and the file cannot be downloaded because it is not present on the local device.