How to properly combine html and сanvas

Hello. Is it correct to make such a card on canvas + html? Or would be better to draw a circle in Blender and combine with the model?

<canvas class="canvas"></canvas>
    <div class="circle">
        <div class="circle__item"></div>
        <div class="circle__item"></div>
        <div class="circle__item"></div>
        <div class="circle__item"></div>
    </div>

It’s quite normal in my opinion. Here I was making an “atmosphere” for the planet in this way. And here I made HTML tooltips tied to certain points of the 3D object. This is where I get the coordinates of the points relative to the container and set the transforms for the corresponding blocks.

2 Likes

Thank you for the answer. Great examples. And how to adapt such solutions? Separately html and separately canvas? Are there any difficulties?