Search This Blog

Wednesday, 28 August 2024

Create a perfect circle with CSS

HTML:

 <div class="circle"></div>


CSS:

.circle { 

      width: 250px; 

      height: 250px; 

      background-color: #e74c3c; 

      border-radius: 50%; 

}

No comments:

Post a Comment