HTML Flashcards

(33 cards)

1
Q

Used to collect user input.

A

HTML Forms

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The HTML _ element is used to create an HTML Form for user input.

A

<form>
</form>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The HTML element is the most used form element.

A

<input></input>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The element useful for screen readers.

A

<label></label>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Let user select one of a limited number of choices.

A

Radio Button

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Let user select Zero or More options of a limited number of choices.

A

Checkboxes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

This is a file on the sever with a script for processing input data.

A

Form-Handler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

If the name attribute is _ , the value of the input field will not be sent at all.

A

Omitted

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

An attribute defines the action to be performed when the form is submitted.

A

Action

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

An Attribute specifies the HTTP method to be used when submitting the form data.

A

Method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Is good for non-secure data, useful wants to bookmark,limited length (2048), appends the form data to the URL.

A

GET

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Appends the form data inside the body HTTP, no size limitations and good for secure data.

A

POST

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

An attribute specifies whether the form should have auto complete on or off.

A

Autocomplete

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

An attribute is a Boolean attribute.

A

Novalidate

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

An element defines multi-lines input field.

A

<textarea>
</textarea>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

An attribute specifies the visible number of lines in a text area.

17
Q

An attribute specifies the visible width of the text area.

18
Q

The element defines clickable button.

A

<button></button>

19
Q

An element is used to group related data in a form.

A

<fieldset>
</fieldset>

20
Q

The element defines a caption for the <fieldset> element.

A

<legend>
</legend>

21
Q

The element specifies a list of pre-defined options for an <input></input> element.

A

<datalist>
</datalist>

22
Q

The element represents the results of a calculations

A

<output>
</output>

23
Q

The attribute specifies that an input field is read-only.

A

Input read-only

24
Q

The attribute specifies that an input field should be disabled.

A

Input Disabled

25
The attribute specifies the visible width.
Input Size
26
An attribute specifies the maximum number of characters
Input maxlength
27
An attribute specifies the minimum and maximum values for an input field.
Input min and max
28
An attribute specifies that the user is allowed to enter more than one value in an input field.
Input Multiple
29
An attribute specifies a regular expression that the input fields value is checked against.
Input pattern
30
An attribute specifies short hint
Input placeholder
31
An attribute specifies legal numbers intervals
Input step
32
An attribute specifies that an input field must be filled out before submitting.
Input required
33
An attribute specifies that an input field should automatically focus
Input autofocus