How to Create a Download Link Any File with single HTML Tag on Your Website


If you try this code thi file open in new tabs.


<a href="img/1.jpg">First Image </a>

<a href="img/2.jpg">Second Image </a>

<a href="img/3.jpg">third Image </a>

<a href="img/4.jpg">Fourth Image </a>


But if you try Download attributes in anchor tag  the file Automatically Download in same tabs.


<a href="img/1.jpg" download="img/1.jpg">First Image </a>

<a href="img/2.jpg" download="img/2.jpg">Second Image </a>

<a href="img/3.jpg" download="img/3.jpg">third Image </a>

<a href="img/4.jpg" download="img/4 .jpg">Fourth Image </a>