Make input button into a square shape with round corner - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:input button

Description

Make input button into a square shape with round corner

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials