How to use input type color (color picker) in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
<body>
 
<form action="save.php"> <!-- Note: 404 That page (save.php) doesn't exist -->
  Select color:
  <input type="color" name="thecolor" value="#f2d4a6">
  <input type="submit">
</form>
 
</body>
</html>

 



answered Jan 2, 2019 by avibootz
...