HTML5 Color Input Type - HTML CSS HTML

HTML CSS examples for HTML:Form Input

Description

HTML5 Color Input Type

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>HTML5 Color Input Type</title> 
 </head> <!--   w  ww. j  a  va 2  s . c o  m-->
 <body> 
  <form> 
   <label> Select Color: <input type="color" name="mycolor"> </label> 
  </form>   
 </body>
</html>

Related Tutorials