I'm trying to decide how to implement curved text.
There are two ways it seems.
CSS transformations and Canvas.
I was under the impression that canvas is used for graphics b.c. it runs in immediate mode as shown in this html5 article.
So, I plan on using CSS3 transformations as shown in this SO post.
I just wanted to confirm or not confirm the primary purpose of canvas - that it is for efficient graphics.