JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<span>Page 1</span>
<span>Page 2</span>
<span>Page 3</span>
<span>Page 4</span>
<span>Page 5</span>
</div>
CSS
div {
height: 150px;
width: 150px;
margin: 100px;
border: 2px solid #000;
border-radius: 50%;
position: relative;
}
div span {
font-family: Arial;
font-size: 12px;
position: absolute;
width: 100px;
}
div span:nth-of-type(1) {
left: 135px;
}
div span:nth-of-type(2) {
left: 155px;
top: 30px;
}
div span:nth-of-type(3) {
left: 160px;
top: 60px;
}
div span:nth-of-type(4) {
left: 155px;
top: 90px;
}
div span:nth-of-type(5) {
left: 145px;
top: 120px;
}