HTML day 2 Flashcards

1
Q

How do you indicate the relative link to a parent directory?

A

Use ../ to indicate the folder above the current one,

then follow it with the file name.

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

How do you indicate the relative link to a child directory?

A

For a child folder, use the name of the child folder,

followed by a forward slash, then the file name.

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

How do you indicate the relative link to a grand parent directory?

A

Repeat the ../ to indicate that you want to go up
two folders (rather than one), then follow it with the
file name.

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

How do you indicate the relative link to the same directory?

A

To link to a file in the same folder, just use the file

name. (Nothing else is needed.)

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

What is the purpose of an HTML form element?

A

HTML form on a web page allows a user to enter data that is sent to a server for processing

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

Give five examples of form control elements.

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

Give three examples of type attributes for HTML elements.

A
  • Radio
  • Email
  • Checkbox
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Is an HTML element a block element or an inline element?

A

Inline

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

What are the six primary HTML elements for creating tables?

A

, , , , ,

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

What purpose do the thead and tbody elements serve?

A
  • The HTML element defines a set of rows defining the head of the columns of the table.
  • The HTML element encapsulates a set of table rows ( elements), indicating that they comprise the body of the table ().
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Give two examples of data that would lend itself well to being displayed in a table.

A

Time Table, Sports Stats

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