Rohit's code plotting the alphabet on the circle (learned a new command!). So, I was inspired to plot them onto a sine curve:
Graphics[MapThread[
Text[
Framed[
Style[#, 20, RandomColor[]],
Background -> RandomColor[]], #2] &, {RandomSample@
Alphabet[] (*values populate #*),
Table[{x, Sin[2 x]}, {x, 0, Pi, Pi/25}] (*values populate #2*)}]]

Then, I decided that the letters should be TALLER at the top and bottom of the curve:
Graphics[MapThread[
Text[
Framed[
Style[#, 20, RandomColor[], FontSize -> 20*Abs[#2[[2]]]],
Background -> RandomColor[]], #2] &, {RandomSample@
Alphabet[] (*values populate #*),
Table[{x, Sin[2 x]}, {x, 0, Pi,
Pi/25}] (*ordered pair values populate #2*)}]]

I can NOT believe it worked! Thank you, Rohit, for the inspiration!!!
NEXT: alphabet on a spiral!