Welcome to the second Intermediate HTML tutorial! In this one we will be looking at forms - excited? Me too.... pfft!
Forms are useful for lots of things!, for example if you want to collect data on users, or have a complaint reporting system, you can have the results posted on a document on your server, think of it as a log.
The basic construction of the form tag is something like this.
<form> - Starts the tag
<input> -Specifies input
<input> -Specifies input
</form> - Ends the tag
The input tag is customisable, and in this tutorial will detail the ways in which this can be done!