JSFiddle - React, Tailwind, and code Playground

by dsummersl

HTML

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

CSS

.half-circle {
    width: 200px;
    height: 100px;
    background-color: gold;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border: 10px solid gray;
    border-bottom: 0;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    content: '>';
}