Download File in Html

Whenever We want to download any file instead of open. You can use Download Attribute in Anchor Tag.

<html>

<body>

<p>Click on the image to download it:<p>

<a href="image.jpg" download>

 <img src="image.jpg" alt="W3Schools" width="104" height="142">

</a>

</body>

</html>

When I click On Image That image Will be Downloaded. In href attribute mention which file should be downloaded. Youcan download pdf files, images and Svgs, etc.

Sign In or Register to comment.