How to draw a half circle (border, outline only) [closed]

<div style="
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 10px solid black;
  border-right: 10px solid white;
  border-bottom: 10px solid white;
  -webkit-transform:rotate(-45deg);
"></div>

Leave a Comment