<html>
<body>
<form action="SubscribeForm.aspx" method="post">
<label for="id_name">Name</label>
<input type="text" id="id_name" name="form_name">/input>
<label for="id_email">Email</label>
<input type="email" id="id_email" name="form_email">/input>
<button type="submit">Subscribe</button>
</form>
</body>
</html>
The form element represents a collection of user editable form fields that can be sent to the web server for futher processing.
A live example:
N of