HTML Flashcards

1
Q

link element

A

anchor tag: <a>link title</a>

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

link element

A

anchor tag: <a>link title</a>

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

picture element

A

<img></img>

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

adding comment

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

what is a span?

A

a generic inline element for grouping things

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

make a horizontal line

A

<hr></hr>

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

make a line break

A

<br></br> after the last word of the section

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

subscript

A

letter or number

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

superscript

A

letter or number

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

list 5 semantic elements

A
  1. main
  2. nav
  3. footer
  4. article
  5. summary
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

picture element

A

<img></img>

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

adding comment

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

what is a span?

A

a generic inline element for grouping things

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

make a horizontal line

A

<hr></hr>

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

make a line break

A

<br></br> after the last word of the section

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

subscript

A

letter or number

17
Q

superscript

A

letter or number

18
Q

list 5 semantic elements

A
  1. main
  2. nav
  3. footer
  4. article
  5. summary
19
Q

emmet child syntax

A

>

20
Q

emmet sibling syntax

A

+

21
Q

emmet repeat syntax

A

*3 or *5 etc.

22
Q

emmet item number

A

$ (replaces $ with a number)
ex: ul>li.item$*5

<li>class="item1" </li>

23
Q

add table

A
24
Q

how to create a field in a form

A
25
Q

add table row

A
26
Q

add table header

A
27
Q

identify head of table

A
28
Q

identify foot of table (like a totals row)

A
29
Q

identify body of a table

A
30
Q

make a table header span 2 rows or 2 columns

A

or

31
Q

first element needed to make a table

A
32
Q

how to start a form

A

action=”where to send info”

33
Q

how to create a field in a form

A
34
Q

how to create a label for form

A
  1. connect to id for input

2. Label Name

35
Q

create a checkbox in form

A

Scales

in input can say “checked” to have auto checked

36
Q

create radio button in form

A

Scales
[name for all buttons in a group must be same]
[value is what is sent by form button]

37
Q

select from drop down in form

A

Dogs

Cats