0
How do I link to a direct link?
4 Answers
+ 1
<button>
<img src="link of image">
</button>
<!-- Example: -->
<button><img src="https://imagizer.imageshack.com/v2/70x70q90/r/924/tBUnA4.png"></button>
https://code.sololearn.com/WUbypDrlJ2K3/?ref=app
+ 3
To insert a link, use the <a> tag with the href attribute to indicate the address of the target page. Example: <a href="http://www.google.com"> . You can make a link to another page in your website simply by writing the file name: <a href="page2.html"> .
 Linkscan also be used to jump to other places on the same page.
+ 1
and to put an image inside the button?