HTML CSS examples for HTML Tag:input button
Call Javascript window.open to load new URL in new tab in input button
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!--from ww w.j av a 2 s . c o m--> <body> <input type="button" value="Two Players" onClick="window.open('http://java2s.com');"> </body> </html>