HTML test3 Flashcards

1
Q

Defines an abbreviation or acronym

A

<abbr></abbr>

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

Defines contact information for the author/owner of a document

A

<address>
</address>

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

Defines the text direction

A

<bdo></bdo>

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

Defines a section that is quoted from another source

A

< blockquote>

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

Defines the title of a work

A

<cite></cite>

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

Defines a short inline quotation

A

<q></q>

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

HTML Comment Tag

its hidden*

A

<!-- Write your comments here -->

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

how many html color values are there?

A

5

RGB, HEX, HSL, RGBA, or HSLA values.

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

Border Color

A

border:

< h1 style=”border:2px solid Tomato;”>Hello World< /h1>

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

An RGB color value represents ______,_____,_______light sources.

This means that there are 256 x 256 x 256

A

RED, GREEN, and BLUE

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

The alpha parameter is a number between _____(fully transparent) and ____(not transparent at all):

A

0.0

1.0

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

To display black, set all color parameters to __, like this:

To display white, set all color parameters to _____, like this:

A

0
rgb(0, 0, 0).

255
rgb(255, 255, 255).

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

In HTML, a color can be specified using a hexadecimal value in the form:

_____________

Where rr (red), gg (green) and bb (blue) are hexadecimal values between___ and ___

A

rrggbb

00
ff

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

hsl=

A

(hue, saturation, lightness)

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

Hue is a degree on the color wheel from 0 to 360. __ is red, ___ is green, and ___is blue.

A

0
120
240

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

Saturation is a percentage value. 0% means a _______, and 100% is the ________

A

shade of gray
full color

17
Q

Lightness is also a percentage value. 0% is ____, and 100% is ____

A

black
white.

18
Q

Use the HTML _______attribute for inline styling
Use the HTML _______element to define internal CSS

A

style

< style >