Can someone help me achieve a result similar to the image shown https://i.sstatic.net/IY1kI.png
I've been working on some code, but I haven't been able to get the exact desired outcome. My goal is to make a div indigo and leave the rest of the body white.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<!-- Bootstrap and fontawesome -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body >
<style>
.arc {
position: absolute;
width: 3.5em;
height: 2em;
border-radius: 70%; /* make it circular */
border-bottom:5px solid brown; /* the arc effect */
z-index: -1;
}
.wrapper > .arc {
display: block;
}
body{background-color:indigo !important}
</style>
<div class="wrapper container" >
<div class="arc"></div>
<div class="exp"><span style="color:white !important">Example</span></div>
</div>
</body>
</html>