Create two buttons in a row for an HTML form - HTML CSS CSS Form

HTML CSS examples for CSS Form:input button style

Description

Create two buttons in a row for an HTML form

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> 
  <title>Pure HTML submit and link buttons</title> 
 </head> <!--  w w w.jav  a  2s .  co m-->
 <body> 
  <div> 
   <form action="" method="post"> 
    <p> <input type="submit" value="Log In"> <a href=""> <span> <input type="button" value="Register"> </span> </a> </p> 
   </form> 
   <a href="">html valid?</a> 
  </div>  
 </body>
</html>

Related Tutorials