HTML forms Flashcards
this html tag is used to create a form
< form >
a < form > tag has which attributes
action =””
method=””
a < form >’s action attributes is used to
specific where to send a form-data
a < form >’s method attributes is used to
specific how the information is submitted
< form method=”get”> is used to
request data from a specified resource
< form method=”post”> is used to
send data to a server
what properties are used to define a < form >
< label >, < input > and
< section >
the < label > property is used to
provide a label for a forms input area
a < label > attribute for=”” is used to
specify which form element a label is bound to
the < input > property is used to
provide a input area
< input > type attribute is used to
define the method used
< input type=” text “ > is used to
define a single-line text input area
< input type=” radio “ > is used to
define radio buttons `
< input type=” submit “ > is used to
define a button for submitting a from to a form handler
the < select > html tag is used to
create a drop-down list in a form