HTML Colors HTML colors are specified with Predefined color names, RGB, HEX, HSL, RGBA, or HSLA values. Color Names In HTML, a color can be specified by using a color name: Tomato Orange DodgerBlue MediumSeaGreen Gray SlateBlue Violet LightGray HTML supports 140 standard color names . Background Color You can set the background color for HTML elements: Hello World Example < h1 style ="background-color:DodgerBlue;" > Hello World < /h1 > < p style ="background-color:Tomato;" > Lorem ipsum... < /p > Text Color You can set the color of text: Hello World Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Example < h1 style ="color:Tomato;" > Hello World < /h1 > < p style ="color:DodgerBlue...