TOPIC 4 Flashcards

(85 cards)

1
Q

provide an easy way to present information in an organized manner.

A

Lists

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

What are the two types of lists in HTML

A

ordered lists (for numbered items)
unordered lists (for bulleted items)

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

An _______ starts with the tag.
Each list item starts with the tag. The list items will be marked with bullets (small black circles) by default

A

Unordered List (<ul>)

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

What are the unordered list styles

A

Disc
Circle
Square
None

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

It is a unordered list style that sets the list item marker to a bullet (default)

A

Disc

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

It is a unordered list style that sets the list item marker to a circle

A

Circle

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

It is a unordered list style that Sets the list item marker to a square

A

Square

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

It is a unordered list style that The list items will not be marked

A

None

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

starts with the <ol> tag. Each list item starts with the <li> tag.

A

An ordered list (<ol>)

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

The list items will be marked with numbers by default, an _______ will start counting from 1. If you want to start counting from a specified number, you can use the start attribute.

A

An ordered list (<ol>)

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

What are the ordered list types

A

type= “1”
type= “A”
type= “a”
type= “I”
type=”i”

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

It is a ordered list type that list items will be numbered with numbers (default).

A

type= “1”

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

It is a ordered list type that list items will be numbered with uppercase letters.

A

type= “A”

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

It is a ordered list type that list list items will be numbered with lowercase letters. It is a ordered list type that list

A

type= “a”

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

It is a ordered list type that list items will be numbered with uppercase roman numbers.

A

type= “I”

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

It is a ordered list type that list items will be numbered with lowercase roman numbers.

A

type= “i”

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

Enumerate the list tags

A

< ul >
< ol >
< li >
< dl >
< dt >
< dd >

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

Defines an unordered list.

A

<ul>
</ul>

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

Defines a list item.

A

<li>
</li>

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

Defines an ordered list.

A

<ol>
</ol>

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

Defines a description list.

A

<dl>
</dl>

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

Defines a term/name in a description list.

A

<dt>
</dt>

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

Defines a description of a term/name in a description list.

A

<dd>
</dd>

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

are an essential part of web development that allow users to interact with a website by inputting and submitting data.

A

HTML Web Forms

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
These are typically used for tasks like logging in, signing up, submitting feedback, making purchases, or searching for information
Forms
26
What are the key features of HTML Web Forms
Data Input and Collection Action and Method Forms Interactivity Form Elements
27
It is a key feature of web forms that states that Forms provide various input fields, such as text boxes, checkboxes, radio buttons, and dropdowns, to gather information from users.
Data Input and Collection
28
It is a key feature of web forms that states that to use the tag with attributes like action (the URL where the data is sent) and method (HTTP methods like GET or POST) to define how and where the data is processed.
Action and Method Forms
29
It is a key feature of web forms that states that HTML forms make websites interactive by enabling users to perform tasks, such as filling out contact forms, submitting feedback, or registering for services.
Interactivity
30
It is a key feature of web forms that states that Forms consist of a combination of input elements (,