I have made a download button but I also want to add a function that when clicked on in it downloads .zip files.
My code:
<style>
.download {
width: 280px;
background-color: DodgerBlue;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
padding: 15px 25px;
font-size: 24px;
text-align: center;
cursor: pointer;
outline: none;
}
.download:hover {
background-color: RoyalBlue;
color: white;
}
.download:active {
background-color: RoyalBlue;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
</style>
<body>
<button class="download"><i class="fa fa-download"></i> <b>Download Source Code Files</b></button>
</body>