EN
HTML - color input
0
points
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>