Navigation

Past Papers

Model Papers

Tutorials

Notes

A/L Classes

Syllabus

Software

eBooks

A/L ICT Notes

HTML Form
<form action="signup.php" method="post">
  Name :<br>
    <input type="text" name="name" placeholder="John Doe"><br>
  Email* :<br>
    <input type="text" name="email" placeholder="john@doe.com" required><br>
  Password* :<br>
    <input type="password" name="pass" placeholder="Input password" required><br>
  Gender :
    <input type="radio" name="gender" value="male" checked>Male
    <input type="radio" name="gender" value="female">Female<br>
  Country :
    <select>
      <option value="Sri Lanka" name="lka" selected>Sri Lanka</option>
    </select><br>
  <input type="checkbox" name="terms" value="agree" checked>I agree to the Terms and Conditions.<br>
  <input type="checkbox" name="news" value="subscribe">Subscribe to the weekly newsletter.<br>
  <input type="submit" name="signup" value="Sign Up">
  <input type="reset" name="reset" value="Reset">
</form>