CSS (Cascading Style Sheets) is a programming language used to style and layout web pages.
<div id="squareOne" class="listener"></div>
<div id="squareTwo" class="listener"></div>
<div id="squareThree" class="listener"></div>
{
document.getElementById('squareOne').onclick = change_Color;
function change_Color()
}
#squareOne{
width: 200px;
height: 200px;
margin: 5px;
background-color: #ccc;
}
#squareTwo{
width: 200px;
height: 200px;
margin: 5px;
background-color: #ccc;
}
#squareThree{
width: 200px;
height: 200px;
margin: 5px;
To learn more about CSS refer to :
https://brainly.com/question/9066363
#SPJ4