HTML Flashcards

1
Q

Where do you put non-visible content about the HTML document?

A

In the head element

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

Where do you put visible content about the HTML document?

A

In the body element

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

Where do the head and body tags go in a valid HTML document?

A

Within the HTML element

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

What is the purpose of a !DOCTYPE declaration?

A

To declare which version of html the page is using

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

Give five examples of HTML element tags.

A

h1 - h6, p, div, img, title, head, body, html

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

What is the purpose of HTML attributes?

A

Attributes provide additional information about the contents of an element.

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

Give an example of an HTML entity (escape character).

A

' (apostrophe), &amp (ampersand), &copy (copyright), &reg (registered trademark), &*acute (acute accent above a letter)

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

How do block-level elements affect the document flow?

A

They will always create/begin on a new line and will take up the entire width of the page, nothing will sit next to it.

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

How do inline elements affect the document flow?

A

They will continue on the same line as neighboring elements.

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

What are the default width and height of a block-level element?

A

All block level elements inherit the width of their parent element by default; their height is the height of the content.

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

What are the default width and height of an inline element?

A

Only as much as is necessary for the content.

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

What is the difference between an ordered list and an unordered list in HTML?

A

Ordered lists use numbers before each list item, while unordered lists use bullet points before each list item.

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

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

A

Lists are block elements

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

What HTML tag is used to link to another website?

A

‘a’ or Anchor element with the href attribute (<a></a>)

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

What is an absolute URL?

A

The full web address for the site you’re linking to in the href attribute.

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

What is a relative URL?

A

A shorthand version of absolute URLs because you do not need to specify the domain name. Used when you are linking to other pages within the same site.

17
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.

18
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.

19
Q

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

A

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

20
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.)

21
Q

What is the purpose of an HTML form element?

A

HTML forms give you a set of elements to collect data from your users.

22
Q

Give five examples of form control elements.

A

Text input (single- or multi-line{comments box}), password input, radio button, checkbox, drop-down, submit buttons, image buttons, file upload

23
Q

Give three examples of “type” attributes for HTML “input” elements.

A

type=”text”, “password”, “radio”, “checkbox”, “file”, “submit”, ”image”, “hidden”

24
Q

Is an HTML “input” element a block element or an inline element?

A

“input” is an inline element

25
Q

What are the six primary HTML elements for creating tables?

A

table, thead, tr, th, tbody, td, tfoot

26
Q

What purpose do the “thead” and “tbody” elements serve?

A

thead and tbody help distinguish between the main content of the table and the first and last rows (which can contain different content)

27
Q

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

A

Calendars, stats, financial reports, TV schedules, sports results, etc.