CSS + HTML Flashcards
1
Q
H1
A
Biggest header
2
Q
H6
A
Smallest header
3
Q
CSS stands for
A
Casacading style sheet
4
Q
HTML stands for
A
Hyper text markup language
5
Q
Formula linking style sheet
A
< link rel =“stylesheet” href “Style.css”
6
Q
Formula for image
A
<img src=“image.jpg” alt=“image”
7
Q
How would you type this on a style sheet “Colour= Red=00 blue = ff Green= 00
A
0000ff
8
Q
Table header
A
<th>
</th>
9
Q
Table data
A
<td>
</td>
10
Q
Table row
A
<tr>
</tr>
11
Q
How to span column further in the table
A
<td colspan=“3” >
12
Q
How to span width of row by in a table
A
<td rowspan=“2” >
13
Q
Hyperlink formula
A
<p> <a href=“……”> </a></p>
14
Q
How to expand width of table to 100% in CSS
A
table{
width: 100%;
}
15
Q
What is unit for height and width in CSS
A
Pixels (px)