Text Input Field with Label
<label for "fname">Enter Your Name:</label>
<input id ="fname" type="text">
Other Types include:
<input id ="numInput" type="number" min=0 max=100 >
Drop Down List Input Field
<label for "year">Select Your Year Level:</label>
<select id="year">
<option value=7>Year 7</option>
<option value=8>Year 8</option>
<option value =9>Year 9</option>
</select>
Text Area Input Field - Use for larger amounts of text
<label for "info">Tell me about yourself..</label>
<textarea id="info" rows="4" cols="50"></textarea>
Buttons
<button>Label for button</button>