HTML CSS examples for CSS Form:input button
HTML center input buttons
<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>