circle

by jshacker

HTML

<div id="circle"></div>

CSS

div {
  height: 200px;
  width: 200px;
  background-color: red;
}

#circle {
  border-radius: 50%;
}