Html – Besides button, submit and , is there other way that can make text clickable

clickhtml

Besides <input type="button" value="Click me" />, <input type="submit" value="Click me" />, <a>Click me</a>, is there another way that can make "Click me" clickable?

Best Answer

With Javascript and CSS, you can make almost everything click-able.

<img src="photo-thumbnail.jpg" onclick="popup_image('photo.jpg');" style="cursor:pointer;" alt="" />

Setting cursor:pointer will make an element look clickable.

But again, that will only work if Javascript is enabled.