<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
a {
background-color: green;
text-decoration: none;
font-size: 20px;
border: 2px solid blue;
padding: 10px;
}
a:hover{
background-color: #cccccc;
}
</style>
</head>
<body>
<h2> Download link </h2>
<p> click to download item </p>
<a href="https://s3.ap-south-1.amazonaws.com/s3.studytonight.com/tutorials/uploads/pictures/1627300314-101156.png" download>Download<span class="fa fa-download"></span></a>
</body>
</html>