HTML CSS examples for CSS Form:input radio button
Set of Radio Buttons with image
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!--from ww w .j av a 2s . c o m--> <body> <label> <input type="radio" name="mode" value="create"> <img width="100" height="60" src="https://www.java2s.com/style/demo/Google-Chrome.png"> </label> <br> <label> <input type="radio" name="mode" value="create"> <img width="100" height="60" src="https://www.java2s.com/style/demo/InternetExplorer.png"> </label> <br> <label> <input type="radio" name="mode" value="create"> <img width="100" height="60" src="https://www.java2s.com/style/demo/Opera.png"> </label> <br> </body> </html>