What do those codes do???
![What do those codes do class=](https://us-static.z-dn.net/files/dbc/da1b37a8a5071c6eba597336b2a13a10.png)
Explanation:
Essentially,
<label for="fname"> First Name: </label>
Creates a label under "fname". The text that will be displayed is First Name.
<input type="text" id="fname" name="fname"
The input type is searching for text, which will be the user's entered name. After collecting the name, it then stores it into "fname".
Example:
First Name:
[enter name]
The same concept goes towards the botton email section as well.
Hope this helps! ^-^
-Isa