types of html forms code example
Example 1: how to collect input textbox in html
<label for="name">Name:</label>
<input type="text" id="name"><br><br>
Example 2: forms in html
<html>
<form action= "your site" method = "post/get">
</form>
</html>