Circle in CSS
In this article, I will show you a very simple way to create a circle in CSS.
Inside HTML,
<div class="circle"></div>
It's time to make it circular,
.circle{
background-color: #eee;
width: 200px;
height: 200px;
border-radius: 50%;
}
You hav...
h.dhairyashah.dev1 min read