Are you ready?
Good. Lets begin. Before I ramble on about all the different ways to input data you must first understand the form tag in which they are all enclosed.
<form action="FormProcessor" name="Form1" method="get">
Action tell the browser where to go when you submit the form. Name sets the name of the form useful if you use JavaScript. Method decides how the information is sent to the processing webpage. Get adds the data into the URL of the webpage, this is good if the page needs to be bookmarked. Post sends the data hidden from the user useful when handling personal information.
The first and simplest type of input method is the text box: