Overview of HTML Flashcards

1
Q

What is the purpose of HTML documents?

A

HTML documents structure content on the web using elements and attributes.

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

How is an HTML document structured?

A

It is organized as a tree of nodes, consisting of HTML elements and text nodes.

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

Can HTML elements be nested?

A

Yes, HTML elements can be nested inside other elements.

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

What is a non-replaced element in HTML?

A

A non-replaced element requires both opening and closing tags.

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

What are replaced elements in HTML?

A

Replaced elements are those substituted by objects like GUI widgets or images (e.g., form controls).

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

What are void elements in HTML?

A

Void elements are self-closing, with no closing tag, and cannot contain text or other elements (e.g., <br>, <img>).

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

What is an example of a replaced element that is not void?

A

Examples of replaced elements that are not void include <video>, <picture>, <object>, and <iframe>.

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

What is a boolean attribute in HTML?

A

A boolean attribute can be written without a value (e.g., <img ismap />).

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

Where do attributes appear in an HTML element?

A

Attributes appear in the opening tag of an element.

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

What do HTML attributes define?

A

HTML attributes define an element’s behavior, appearance, functionality, or linkages (e.g., href for links).

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

When are quotes required around attribute values?

A

Quotes are required if the attribute value contains whitespace or special characters.

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

What does HTML structure define?

A

HTML structure defines the arrangement of content, not its appearance.

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

What is the purpose of elements in HTML?

A

Elements should reflect semantic meaning and an appropriate role.

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

What is the DOM (Document Object Model)?

A

The DOM is a data representation of HTML structure and content, with elements and text nodes as JavaScript objects.

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

What does the HTML DOM API provide?

A

The HTML DOM API provides interfaces to interact with HTML elements.

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

What does the HTMLElement interface represent?

A

The HTMLElement interface represents an element and its descendant nodes in the DOM.