Section 3 Flashcards

1
Q

Rendering

A

Displaying something visual to the user

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

DOM

A

A representation of the content of a webpage in the form of a tree data structure. The root node is an object that represents the document, or the entire web page.

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

Tree

A

A data structure that resembles an upside down tree. Each piece of data is represented by a node, beginning with a root node.

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

Node

A

A unit of data in a tree, which contains the data itself and a list of other nodes it points to. Each node can only have one parent node.

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

HTML (Hypertext Markup Language)

A

A markup language used to structure the content of a web page.

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

Markup Language

A

Syntax rules for adding structural or other information to a data file in a way that is visually distinct from the data itself.

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

Element

A

A unit of content in an HTML document. These are represented as nodes in the DOM.

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

Sibling

A

In a tree structure, a sibling node is a node that shares a parent with another node.

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

HTML Tag
(tag)

A

A piece of syntax that defines an HTML element. Most HTML elements have an opening and closing tag.

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

Semantic HTML

A

The practice of intentionally using HTML tags that are descriptive to the content itself.

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

Attributes
(property)

A

Additional pieces of information attached to an HTML element. Comes in attribute-value pairs.

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