MIdter Flashcards

1
Q

Defines labels for form elements

A

label

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

Get input data from the form in various types such as text, password, email, etc

A

Input

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

Defines a clickable button to control other elements

A

Button

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

Used to create a dropdown list

A

Select

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

Used to get input long text content

A

textarea

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

Used to draw a box around other form elements and group them related data

A

fieldset

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

defines caption for fieldset elements

A

legend

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

used to specify pre-defined list options for input controls

A

datalist

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

displays the output for performed calculations

A

output

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

used to define options in a drop down list

A

option

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

used to define group-related options in a dropdown list

A

optgroup

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

html responsive web design syntax

A

<meta name=”viewport” content=”width=device width, initial-scale=”1.0”>

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

responsive images

A

<img></img>

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

It means that the view of a web page differs from system to system based on screen or media types.

A

CSS media queries

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

what CSS property auto adjusts the content (no. of columns in a row) according to the screen width as shown in the output gif.

A

display: flexbox

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

It allows us to decide the number of columns we want to keep and instead of rearranging the columns like Flexbox, it adjusts the content within individual column elements.

A

display: grid;

17
Q

an arrangement of data in rows and columns in tabular format.

A

HTML tables

18
Q

defines the structure for organizing data in rows and columns in a web page

A

<table>
</table>

19
Q

represents a row within a table

A

<tr>
</tr>

20
Q

table header cell that holds titles or headings

A

<th>
</th>

21
Q

standard data cell, holding content or data

A

td

22
Q

provides a title or description for the entire table

A

<caption>
</caption>

23
Q

defines the header section of a table, often containing column labels

A

<thead>
</thead>

24
Q

represents the main content area of a table

A

tbody

25
Q

is a record of short pieces of related information or used to display the data or any information on web pages in the ordered or unordered form.

A

list

26
Q
A