CSS + HTML Flashcards

1
Q

H1

A

Biggest header

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

H6

A

Smallest header

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

CSS stands for

A

Casacading style sheet

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

HTML stands for

A

Hyper text markup language

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

Formula linking style sheet

A

< link rel =“stylesheet” href “Style.css”

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

Formula for image

A

<img src=“image.jpg” alt=“image”

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

How would you type this on a style sheet “Colour= Red=00 blue = ff Green= 00

A

0000ff

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

Table header

A

<th>
</th>

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

Table data

A

<td>
</td>

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

Table row

A

<tr>
</tr>

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

How to span column further in the table

A

<td colspan=“3” >

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

How to span width of row by in a table

A

<td rowspan=“2” >

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

Hyperlink formula

A

<p> <a href=“……”> </a></p>

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

How to expand width of table to 100% in CSS

A

table{
width: 100%;
}

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

What is unit for height and width in CSS

A

Pixels (px)

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

How to add a video in html

A

<video>
< source src="movie.mp4"
type="video/mp4">
</video>