What attribute is a <form> attribute and specifies that the form data should not be validated when submitted.
Front
novalidate
Back
What attribute refers to a <datalist> element that contains pre-defined options for an <input> element.
Front
list
Back
What attribute specifies the legal number intervals for an <input> element.
Front
step
Back
What tags are used to show a sample output from a computer program
Front
<samp>
Back
What attribute specifies the maximum allowed number of characters for the input field:
Front
maxlength
Back
Which attribute is higher priority : formaction or action
Front
formaction
Back
What attribute changes "method"
Front
formmethod
Back
When tag computer code, how do you preserve
the new lines
Front
enclose the <code></code> with <pre> and </pre>
Back
Example of bi-directional statement
Front
<bdo dir="rtl" In the begining</bdo>
Back
What attribute specifies a regular expression that the <input> element's value is checked against to limit the type of input characters
Front
pattern
Back
what attribute specifies the initial value for an input field:
Front
value
Back
what attribute specifies that the input field is read only (cannot be changed):
Front
readonly
Back
What attribute specifies that the user is allowed to enter more than one value in the <input> element.
Front
multiple
Back
What attribute specifies the URL of a file that will process the input control when the form is submitted.
Front
formaction
Back
What attribute specifies whether a form or input field should have autocomplete on or off.
Front
autocomplete
Back
What attribute specifies that the input field is disabled, is unusable, and un-clickable
Front
disabled
Back
What attribute specifies a hint/example that describes the expected value of an input field
Front
placeholder
Back
What attribute specifies that the input field should automatically get focus when the page loads.
Front
autofocus
Back
What attribute specifies the size (in characters) for the input field:
Front
size
Back
When width and height are included in an input tag,
Front
the values are just numbers
Back
What attribute specifies a name or a keyword that indicates where to display the response that is received after submitting the form.
Front
formtarget
Back
What attribute specifies that an input field must be filled out before submitting the form.
Front
required
Back
Formmethod and formnovalidate are what type of input
Front
submit
Back
Why is "name" different in a checkbox and the same in a radio form
Front
In checkbox you can select more than one, and in
radio forms you only select one
Back
Formaction is what type of input
Front
submit
<input type="submit" formaction=" "
Back
The "novalidate" attribute is used for
Front
forms
Back
What attribute specifies one or more forms an <input> element belongs to if...
Front
form.... if it references an "id" in the form
Back
What tags are used to identify keyboard input
Front
<kbd>
Back
What tags are used to identify computer code
Front
<code>
Back
Add the proper HTML element to it, and specify that it is quoted from the following URL:
http://www.worldwildlife.org
For 50 years, WWF has been protecting the future of nature.
Front
<blockquote cite="http://www.worldwildlife.org>
For 50 years, WWF has been protecting the future of nature.<blockquote>
Back
The letters "WHO" in the text below is an abbreviation of "World Health Organization".
Use an HTML element to provide the specified abbreviation of "WHO".
<p>The WHO was founded in 1948.</p>
Front
<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>