ICT FA3 Flashcards
Define a list.
A list is a collection of related items
What is a table?
A table is a way to represent data in rows and columns.
What is a description list?
A description list is also known as a definition list. It is made with the <DL> tag.
What is the difference between the ordered list and unordered list?
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.
Write the 4 attribute tags of the <Table> tag.
-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)
What is the difference between the rowspan and colspan attributes?
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.
What is the use of the <HR> tag?
The <HR> tag is used to create a horizontal ruler which is used to create separations in the webpage
Which property is used for indention in HTML5?
Text indent.
Which tag is frequently used to write algebraic formula?
The SUB tag
Explain the uses of horizontal ruler tag and its various attributes.
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)
Explain the uses of font properly in detail.
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)
What is the difference between the SUB tag and the SUP tag?
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
What is the difference between text-align and text-indent?
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.
What tag is used to specify a section of text as a paragraph?
<p> tag
</p>
What is the space that appears around an element?
margin
What kind of language is HTML
A markup language
What tag is used to make an ordered list?
<ol> tag
</ol>
What tag is used to define a list?
<li>
</li>
What tag creates the table caption in HTML?
the <Caption> tag
Does the start attribute always accept integer values?
No it does not
Is the <br></br> tag used to break line in a paragraph?
Yes it is
What is CSS?
CSS stands for Cascading Style Sheets.
It is a design language used to make web pages look better.
What is the Margin property?
The margin property is used to make margins in any element of the webpage.