HTML center input buttons - HTML CSS CSS Form

HTML CSS examples for CSS Form:input button

Description

HTML center input buttons

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">

div{<!--  www .  j a va 2 s. c  o m-->
   text-align:center;
}


      </style> 
 </head> 
 <body> 
  <div> 
   <p align="center">Do you want to play the game?</p> 
   <br> 
   <input type="Submit" Name="StartQuiz" value="Yes" align="center"> 
   <input type="Submit" Name="LogOut" value="No" align="center"> 
  </div>  
 </body>
</html>

Related Tutorials