【HTML】Beginner9:Form

1.Form
    Collect data inputted by a user.
    Used as an interface for a web application,or send data across the web.
 
2.</form>
attribute:
    action:where its contents will be sent to
    method:how the data in it is going to be sent 
get:shorter chunks of non-sensitive information
post:lengthier,more secure submissions
 
3.</input>
attribute:
<input type="text" "password" >
<input type="checkbox" "radio"(only one) checked>
<input type="submit" value="Ooo.Look.Text on a button.Wow"(text that appears on the submit button)>
 
4.</textarea>
a large multi-line textbox
 
5.</select>
works with the option tag to make drop-down select boxes
value selected
 
6.Name
原文地址:https://www.cnblogs.com/yzhen/p/3657375.html