Languages
[Edit]
EN

HTML - color input

0 points
Created by:
DrJoystick
465

In this article, we would like to show you how to use color input element in HTML.

Quick solution:

// ONLINE-RUNNER:browser;

<input type="color" name="background" value="#FF0000" />

 

Practical example

In this example, we use the input element's type="color" attribute to create a color picker for the background.

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<body>
  <div>
    <input type="color" id="background" name="background" value="#FF0000" />
    <label for="background">Background color</label>
  </div>
</body>
</html>

References

Alternative titles

  1. HTML - input type color
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

HTML - input element types

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join