Can I put an image button in html ?I am a designer,so I can make buttons in photoshop
So I can do this ?
1 Like
If you create a button in html. Here is the sample http://htmlbook.ru/samhtml5/formy/knopki
example 2
1 Like
The <button></button>
element is designed to accept both text and image content.
<button><img src="button-bg.png"></button>
Use CSS to set dimensions and positioning, etc. Investigate how you would hide some text under the image in case the image doesn’t come down.
1 Like