JSFiddle - React, Tailwind, and code Playground

by Helder da Rocha

HTML

<h1>Texto em HTML</h1>
<div id="circulo">
   <svg viewBox="0 0 200 200">
       <circle fill="red" cx="100" cy="100" r="100"/>
   </svg>
</div>

CSS

svg {
    border: solid blue 1px;
}

#circulo {
    width: 150px;
    height: 150px;
}