3. HTML 2 Flashcards

1
Q

What are HTML structures? (+ 3 ex)

A

Collection of different elements

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

Order of embeddedness in structures?

A

Is always the same

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

How is embeddedness applied?

A

By including a certain element, or certain multiple elements, in the inner HTML of the parent element

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

Unordered list code?

A

<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>

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

Ordered list code?

A

<ol>
<li>First Item</li>
<li>Second Item</li>
</ol>

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

Table code?

A

<table>
<tr>
<th></th>
<td></td>
</tr>
</table>

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

Table with 3 rows code?

A

<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Row 1, Col 1</td>
<td>Row 1, Col 2</td>
</tr>
<tr>
<td>Row 2, Col 1</td>
<td>Row 2, Col 2</td>
</tr>
</table>

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

What does type=”text” refer to?

A

A single-line text input.

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

What does type=”radio” refer to?

A

A radio button for selecting one option in a group.

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

What does type=”checkbox”” refer to?

A

A checkbox for multiple selections.

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

What does type=”submit” refer to?

A

A button to submit the form.

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

What does type=”button” refer to?

A

A regular button

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

Form format?

A

<form>
<label></label>
<input></input>
<input></input>
<input></input>
<input></input>
<input></input>
<select>
<option></option>
</select>
</form>

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

How to ask someone for first and last name?

A

Voir photos cell

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

See powerpoint session 14

A

See powerpoint session 14

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