html - create a link that when click opens some text on the same webpage -
hi new html , not know php or javascript. have simple html webpage picture in middle. want when click picture text appears describing picture without going new webpage. possible on html without using javascript or php , if how done? thanks
it's possible similar details
, summary
html5 elements.
see fiddle (works in chrome/safari/opera)
<details> <summary><img src="image-source"> click here more information</summary> <p>more information</p> </details>
due lack of browser support, not recommend using them. see caniuse.com - summary
Comments
Post a Comment