HTML5 color input type examples




HTML5 color input type examples

<!DOCTYPE html>
<html>
   <head>
      <title>HTML5 Color Input Type examples</title>
   </head>
   <body>
      <form>
        <label>
            Select Color: <input type="color" name="mycolor">
        </label>
      </form>
   </body>
</html>     

Output