I am a beginner. I would like my button which is created of a circle with an icon to be a hyperlink to my Twitter account, I tried many ways to do it but they didn't work. Thanks in advance for your answers. Any help will be appreciated.
HTML:
<button type="button" id="twitter-icon">
<img src="img/twitter-icon.svg">
</button>
CSS:
#twitter-icon {
border: none;
color: none;
text-decoration: none;
cursor: pointer;
display: inline-block;
backface-visibility: hidden;
background-color: none;
width: 0px;
height: 0px;
display: inline-block;
margin-right: 70px;
margin-top: 150px;
}