<html><head></head><style>#div1{width:400px;height:400px;background-color:red;}</style><script> function blue(){ div1=document.getElementById('div1'); div1.style.backgroundColor='blue'; } function pink(){ div1=document.…
<script> function selectForm(lowerValue,upperValue){ var choices=upperValue-lowerValue+1; return Math.floor(Math.random()*choices+lowerValue) } var colors=["red","green","blue","yellow","black","…