Circle

To create a circle, define an element with an equal width and height (a square) and then set the border-radius property of this element to 50%.

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/af63323e-1c03-40c9-bb23-d04fe478455c/Untitled.png

Screenshot

HTML

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

CSS

.circle {
   width: 50px;
   height: 50px;
   background: rgb(246, 156, 85);
   border-radius: 50%;
}

Ellipse

An ellipse is similar to a circle, but with different values for width and height.

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/dfbd277d-f0d5-4c82-89cd-af6825b73781/Untitled.png

Screenshot

HTML

<div class="oval"></div>

CSS

.oval {
  width: 50px;
  height: 80px;
  background: rgb(246, 156, 85);
  border-radius: 50%;
}