HTML forms

In real life, Forms are everywhere. You need to fill form for any kind of application. e.g. getting admission to school, applying for passport, visa etc. In digital world, form element is used to represent such real world forms.






<!DOCTYPE html>
<html>
<body>

<form action="/process-user">
  <label for="username">User name:</label><br/>
  <input type="text" id="username" name="username"/><br/>
  <label for="userid">User Id:</label><br/>
  <input type="text" id="userid" name="userid"/><br/>
  <input type="submit" />
</form> 

</body>
</html>



Web development and Automation testing

solutions delivered!!