Creating multiple circles in CSS and linking them to my HTML file has posed a challenge. The code I have so far is:
.circle{
height: 50px;
width: 50px;
background-color: red;
}
However, attempting to make another circle using the same 'circle' class has caused interference with my JavaScript code, particularly with my variables. I am curious if there is a way to create a second circle tag that functions similarly.