HTML CSS examples for HTML Tag:input button
Make input button into a square shape with round corner
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!-- w w w.ja va2 s .c o m--> <body> <button style="height:150px;width:150px;border-radius:10px;border: none;">Hello,World</button> </body> </html>