HTML test3 Flashcards
Defines an abbreviation or acronym
<abbr></abbr>
Defines contact information for the author/owner of a document
<address>
</address>
Defines the text direction
<bdo></bdo>
Defines a section that is quoted from another source
< blockquote>
Defines the title of a work
<cite></cite>
Defines a short inline quotation
<q></q>
HTML Comment Tag
its hidden*
<!-- Write your comments here -->
how many html color values are there?
5
RGB, HEX, HSL, RGBA, or HSLA values.
Border Color
border:
< h1 style=”border:2px solid Tomato;”>Hello World< /h1>
An RGB color value represents ______,_____,_______light sources.
This means that there are 256 x 256 x 256
RED, GREEN, and BLUE
The alpha parameter is a number between _____(fully transparent) and ____(not transparent at all):
0.0
1.0
To display black, set all color parameters to __, like this:
To display white, set all color parameters to _____, like this:
0
rgb(0, 0, 0).
255
rgb(255, 255, 255).
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 ___
rrggbb
00
ff
hsl=
(hue, saturation, lightness)
Hue is a degree on the color wheel from 0 to 360. __ is red, ___ is green, and ___is blue.
0
120
240
Saturation is a percentage value. 0% means a _______, and 100% is the ________
shade of gray
full color
Lightness is also a percentage value. 0% is ____, and 100% is ____
black
white.
Use the HTML _______attribute for inline styling
Use the HTML _______element to define internal CSS
style
< style >