HTML CSS examples for CSS Widget:Button
Use a button to navigate to a website in HTML5
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!-- ww w. ja v a 2 s. c om--> <body> <button class="link" onclick="window.location.href='http://example.com'">test</button> </body> </html>