Forms Flashcards
HTML Forms
element that wraps all of the elements included within the form
[form]
HTML Forms
[form] attribute that contains the URL to which information included within the form will be sent for processing by the server
action
HTML Forms
[form] attribute that defines the HTTP method browsers should use to submit the form data
method
HTML Forms
one of the primary elements used to obtain text from users
[input]
self closing
HTML Forms
[input] attribute used to define what kind of information is to be captured within the control
type
ex
HTML Forms
[input] type attribute value used to specify a push button with no default behavior
button
HTML Forms
[input] type attribute value used to specify a checkbox
checkbox
HTML Forms
[input] type attribute value used to specify a color
color
HTML Forms
[input] type attribute value used to specify a year, month and day with no time
date
HTML Forms
[input] type attribute value used to specify a date and time, with no timezone
datetime-local
HTML Forms
[input] type attribute value used to specify an email address
HTML Forms
[input] type attribute value used to specify a file chosen by the user
file
HTML Forms
css pseudo-classes applied to email input types after validation
:valid and :invalid
HTML Forms
attribute used with file input types to specify what kinds of files the server will accept
accept
ex
accept=”image/*”
accept=”audio/*”
accept=”video/*”
accept=”.some_ext,image/*”
HTML Forms
[input] type attribute value used to specify a control that is not displayed but whose value is submitted to the server
hidden
HTML Forms
[input] type attribute value used to specify a graphical submit button
image
HTML Forms
attributes that must be used with image input types to specify the location of the image and the alternate text
src, alt
HTML Forms
attributes that can be used with image input types to specify the dimensions of the image in pixels
height, width