Make a circle with just CSS

PHOTO EMBED

Mon Mar 02 2020 22:07:43 GMT+0000 (Coordinated Universal Time)

Saved by @carlathemarla #css #shapes

<style>

 .circle:before {
                    content: ' \25CF';
                    font-size: 50px;
                    color: black;
                }
</style>

<span class="circle"></span>
content_copyCOPY

Adjust the size of the circle by changing the font-size (line 5).