entities and color
Hexadecimal Color Code
In computing we can identify a color using a unique color code which consists of a # followed by 6 digits. This is called the hexadecimal RGB color code. RGB stands for Red, Green and Blue. These 3 colors are in computing the the primary colors: which means that every color is made of a combination of these three colors.
Red = #FF0000 = RGB(255, 0, 0)
Green = #008000 = RGB(1, 128, 0)
Blue = #0000FF = RGB(0, 0, 255)
White = #FFFFFF = RGB(255,255,255)
Ivory = #FFFFF0 = RGB(255, 255, 240)
Black = #000000 = RGB(0, 0, 0)
Gray = #808080 = RGB(128, 128, 128)
Silver = #C0C0C0 = RGB(192, 192, 192)
Yellow = #FFFF00 = RGB(255, 255, 0)
Purple = #800080 = RGB(128, 0, 128)
Orange = FFA500 = RGB(255, 165, 0)
Maroon = #800000 = RGB(128, 0, 0)
Fuchsia = #FF00FF = RGB(255, 0, 255)
Lime = #00FF00 = RGB(0, 255, 0)
Aqua = #00FFFF = RGB(0, 255, 255)
Teal = #008080 = RGB(0, 128, 128)
Olive = #808000 = RGB(128, 128, 0)
Navy = #000080 = RGB(0, 0, 128)
HTML Formatting Elements/Tags
Formatting elements were designed to display special types of text
TAG DESCRIPTION
<b> Defines bold text
<em> Defines emphasized text
<i> Defines a part of text in an alternate voice or mood
<small> Defines smaller text
<strong> Defines important text
<sub> Defines subscription text
<sup> Defines superscripted text
<ins> Defines inserted text
<del> Defines deleted text
<mark> Defines marked/highlighted text
Comments
Post a Comment