IF you want to create a download button for your blogger like the following, Then follow the steps.
Copy this code and paste into HTML mode.
Replace the URL with your own.
Enjoy
Don't forget to subscribe
Code:
<a href='URL' target='_blank'>
<input type='button' style='padding-left:75px;padding-top:18px;padding-right:75px;padding-bottom:18px;margin-left:10px;margin-top:10px;margin-right:10px;margin-bottom:10px;background-color:#a30000;color:#FFFFFF;border-left-width:5px;border-top-width:0px;border-right-width:0px;border-bottom-width:5px;border-color:#005201;border-radius:100px;cursor:pointer' value='Click to DOWNLOAD' onMouseOver=this.style.backgroundColor='#FFFFFF';this.style.color='#1b90bb';this.style.borderColor='#d60000' onMouseOut=this.style.backgroundColor='#a30000';this.style.color='#FFFFFF';this.style.borderColor='#005201' />
</a>