Tuesday, 1 December 2015

How to Creat A Simple Application Form in html

<!DOCTYPE html
<html>
<head>
<title>google.com</title>
</head>

<body><h1>A Simple Form Application</h1>
<h2>Please Enter Your Full Name</h2>
<form action="method">
<table border="0" cellspacing="5">
<tr>
      <td>First Name:</td>
      <td><input type="text" size="20" name="First Name"></td>
</tr>
<tr>
      <td>Last Name:</td>
      <td><input type="text" size="20" name="Last Name"></td>
</tr>
</table>
<input type="Submit"> <input type="Reset">
</form>
      </body>
</html>

No comments:

Post a Comment