HTML Forms Part 1
Basic tags and attributes
Tags
The HTML <form>
element defines a form that is used to collect user input:
<form>
</-- input tags and variations of input tags -->
</form>
<form>
wraps all your inputs.
A simple form in HTML would look like:
<form>
First Name: <input/>
</from>
And look like this in the browser: