How to make an arc on CSS:

Example 1Example 2

Thank you in advance.

1 answer 1

For example, using border-radius :

 .arc { position: relative; width: 100%; height: 100px; background-color: teal; border-radius: 0 0 70%; } 
 <div class="arc"></div>