Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style>
/* Default CSS Values */
form {
  display: block;
  margin-top: 0em;
}
</style>
</head>
<body>
<p>A form element is displayed like this:</p>
<form action="demo_form.asp">
  First name: <input type="text" name="FirstName" value="Mickey"><br>
  Last name: <input type="text" name="LastName" value="Mouse"><br>
  <input type="submit" value="Submit">
</form>
<p>A customized form element (changed margin-top):</p>
<form action="demo_form.asp" style="margin-top:50px;">
  First name: <input type="text" name="FirstName" value="Mickey"><br>
  Last name: <input type="text" name="LastName" value="Mouse"><br>
  <input type="submit" value="Submit">
</form>
</body>
</html>