LESSON 3 Flashcards

(19 cards)

1
Q

represent data, such as text, images, etc., in a structured format with rows and columns.

A

HTML Tables

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

allow you to arrange data like text, images, and links in rows and columns.

A

HTML Tables

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

This tag is used to create the table that wraps the rows and columns within it.

A

<table>
</table>

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

Stands for “table row” and is used to create a row within the table.

A

<tr>
</tr>

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

Represents “table data” and is used to create standard cells within a row.

A

<td>
</td>

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

Represents “table header” and is used to create header cells within a row.

A

<th>
</th>

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

are groups or collections of items. These items can be both organized and unorganized depending on the requirement.

A

HTML Lists

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

display lists of items that are not in a specific order

A

Unordered Lists

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

a collection of items that have a specific order or sequence.

A

Ordered Lists

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

define list items having the structure of terms and their corresponding definitions.

A

Definition Lists

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

are essential in web development as they allow users to navigate between different web pages, sections within a page, or even external websites.

A

HTML links (also known as hyperlinks)

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

a specific type of link that allows users to navigate from one web page or resource to another by clicking on it.

A

Hyperlink

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

basic element that creates hyperlinks between two pages.

A

<a></a>

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

an HTML element used to group and structure content on a
webpage.

A

<div>
</div>

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

an inline container used to group and style small pieces of text or elements within a larger block of content.

A

<span></span>

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

are those that start on a new line and take up the entire width of their container by default.

A

Block-level elements

17
Q

do not start on a new line and only take up as much width as necessary.

A

Inline elements

18
Q

is defined in the HTML code using the “class” keyword, and the styling is determined in CSS.

A

HTML class attribute

19
Q

is defined in the HTML code using the “id” keyword, and the styling is determined in CSS.

A

HTML id attribute