HTML Flashcards

(37 cards)

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

20
Q

emmet sibling syntax

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

24
Q

how to create a field in a form

25
add table row
26
add table header
27
identify head of table
28
identify foot of table (like a totals row)
29
identify body of a table
30
make a table header span 2 rows or 2 columns
or
31
first element needed to make a table
32
how to start a form
action="where to send info"
33
how to create a field in a form
34
how to create a label for form
1. connect to id for input | 2. Label Name
35
create a checkbox in form
Scales | in input can say "checked" to have auto checked
36
create radio button in form
Scales [name for all buttons in a group must be same] [value is what is sent by form button]
37
select from drop down in form
Dogs | Cats