Reading Notes
action
Defines where the data gets sentmethod
Defines how the data is sent
GET
Method used by browser to ask server to send back a specific resourcePOST
Method browser uses to talk to the server when asking server to perform an action on the data sent by the clientGET
method to transfer a passwordPOST
for large amounts of dataPOST
enctype
to multipart/form-data
<input type="file'>
to allows user to select the files to be uploaded<button></button>
Defines a clickable button<fieldset></fieldset>
Defines a group of controls within a form<form></form>
Defines an interactive form with controls<input></input>
Defines an interactive control within a web form<legend></legend>
Defines a caption for a parent’s content<textarea></textarea>
Defines a multi-line text control within a web form