JSFiddle - React, Tailwind, and code Playground

by Arthur Lutkevichus

HTML

<!DOCTYPE html>
<html>
<body>

<h1>The a download attribute</h1>

<p>Click on the image to download it:<p>
<a href="https://www.even.lv/img/even.svg" download>
  <img src="https://www.even.lv/img/even.svg" width="104" height="142">
</a>

<p><b>Note:</b> The download attribute is not supported in IE or Edge (prior version 18), or in Safari (prior version 10.1).</p>

</body>
</html>