HTML COURSE โ€ข LESSON 12

HTML Colors

HTML colors are normally added using CSS. You can change text colors, backgrounds and borders.

Color Names

Color Name Example
<h1 style="color: blue;">
    EDUHUB Code Hub
</h1>

<p style="color: green;">
    Learn HTML online.
</p>

Background Colors

Background Color
<div style="background-color: lightblue;">

    <h2>HTML Course</h2>

    <p>Learn web development.</p>

</div>

HEX Colors

A hexadecimal color starts with # and uses six characters.

HEX Color
<h1 style="color: #00d9ff;">
    EDUHUB
</h1>

RGB Colors

RGB uses red, green and blue values.

RGB Color
<p style="color: rgb(0, 217, 255);">
    Learn HTML
</p>
๐Ÿ’ก Color Examples

#ff0000 is red, #00ff00 is green and #0000ff is blue.

โšก EDUHUB Live HTML Editor

LIVE PREVIEW