Open In App

HTML | <input type=”color”>

The HTML <input type=”color”> is used to define a color picker. the value should be a seven character hexadecimal notation. It has a Default value which is #000000(black). 

Syntax: 



<input type="color"> 

Example: 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input Type = "color"
    </title>
</head>
 
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
    <h2>
        HTML &lt;input type="color&gt;
    </h2>
 
    <p>
        Select your favorite color:
        <input type="color"
               value="#009900"
               id="color">
    </p>
</body>
 
</html>

Output :



  

Supported Browsers:

Article Tags :