I have a circle and in it I have a number, my question is: how do I put the number in center of circle?
I know there are other articles similar to this but they did not help me.
Here is what I have tried:
.circle{
border-radius: 50%;
background-color: #0276FD;
border: 12px solid #0276FD;
color: black;
background-color: #FFFFFF;
height: 80px;
width: 80px;
text-align: center;
}
Here is the result:
Any ideas?
Thanks in advance.