ICT FA3 Flashcards

1
Q

Define a list.

A

A list is a collection of related items

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

What is a table?

A

A table is a way to represent data in rows and columns.

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

What is a description list?

A

A description list is also known as a definition list. It is made with the <DL> tag.

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

What is the difference between the ordered list and unordered list?

A

An ordered list uses numbers and shows items in a specific order, like steps in a process while an unordered list uses bullets and shows items that don’t need to be in order.

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

Write the 4 attribute tags of the <Table> tag.

A

-align (allows you to choose the alignment of the table)
-bgcolor (allows you to choose the background color of the table)
-border (allows you to choose the width of the table’s border)
-cell padding (allows you to change the space between the cells and the border)

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

What is the difference between the rowspan and colspan attributes?

A

Rowspan is used when a cell needs to stretch over two or more rows while Colspan is used when a cell needs to stretch over two or more columns.

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

What is the use of the <HR> tag?

A

The <HR> tag is used to create a horizontal ruler which is used to create separations in the webpage

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

Which property is used for indention in HTML5?

A

Text indent.

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

Which tag is frequently used to write algebraic formula?

A

The SUB tag

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

Explain the uses of horizontal ruler tag and its various attributes.

A

The <HR> tag is used to create a horizontal ruler which is used to create separations in the webpage, and here are its attributes:
-align (allows you to choose the alignment type of the ruler)
-width (allows you to set the width of the ruler)
-size (allows you to set the height of the ruler)

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

Explain the uses of font properly in detail.

A

By using CSS you can change many attributes in font like:
-Font-family: (allows you to choose the font type)
-Font-size: (allows you to choose the size of the font)
-Font-style: (allows you to choose the style of the font)

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

What is the difference between the SUB tag and the SUP tag?

A

The SUP tag changes some text into a superscript(ex: E=mc2 as E=mc sup 2 /sup
The SUB tag changes some text into a subscript(ex:H2O as H sub 2 /sub>O

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

What is the difference between text-align and text-indent?

A

Text-align allows you to specify the alignment of the text while Text-indent allows you to specify the indentation of the first line of the text.

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

What tag is used to specify a section of text as a paragraph?

A

<p> tag
</p>

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

What is the space that appears around an element?

A

margin

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

What kind of language is HTML

A

A markup language

17
Q

What tag is used to make an ordered list?

A

<ol> tag
</ol>

18
Q

What tag is used to define a list?

19
Q

What tag creates the table caption in HTML?

A

the <Caption> tag

20
Q

Does the start attribute always accept integer values?

A

No it does not

21
Q

Is the <br></br> tag used to break line in a paragraph?

22
Q

What is CSS?

A

CSS stands for Cascading Style Sheets.
It is a design language used to make web pages look better.

23
Q

What is the Margin property?

A

The margin property is used to make margins in any element of the webpage.