<!DOCTYPE html>
<html>
<body>
A color picker: <input type="color" id="myColor">
<p>Click the "Try it" button to change the color of the color picker.</p>
<button onclick="myFunction()">Try it</button>
<p><strong>Note:</strong> input elements with type="color" do not show any colorpicker in Internet Explorer and Safari.</p>
<script>
function myFunction() {
document.getElementById("myColor").value = "#FF8040";
}
</script>
</body>
</html>