As the title says, I want this text: 'English.Math.Science.HSIE.Agriculture.PDHPE.IST.Photography' to be turned into a circle shape instead of being a straight line. What code is required for this?
This is the code I have right now
#rotatingtext{
position: absolute;
top: 1800px;
left: 50%;
transform: translate(-50%, -50%);
font-size: 20px;
color: white;
font-weight: nold;
animation: rotatingtext 20s infinite linear;
}
@keyframes rotatingtext{
0% {
transform: translateY(0) rotate(0deg);
}
100% {
transform: translateY(0) rotate(360deg);
}
}
<div id="rotatingtext">English.Math.Science.HSIE.Agriculture.PDHPE.IST.Photography</div>