My knowledge of creating shapes and using these programming languages is limited.
I am currently working on a survey in Qualtrics and I need to insert text into circular shapes.
- Creating one circle was straightforward, thanks to some helpful discussions I found. For visual reference, see the image provided below.
Currently, I have implemented the following code for the simple circle, but I will need to modify it to accommodate the second circle as well.
.circle
{
width:500px;
height:500px;
border-radius:250px;
font-size:50px;
color:#fff;
line-height:500px;
text-align:center;
background:#000
}
<div class="circle">Text</div>
- The second circle requires a dividing line in the middle to separate two different text inputs - one above the line and another below it.