Hello....
Really simple one ... (sorry for asking really)

How do I get REALLY BIG text into a QLabel?

I'm using,
Qt Code:
  1. QString richText ("<h1><b><font color='green'> <font size=24>"+text+"</font></font></b>");
  2. setText(richText);
  3. QWidget::setFixedSize(QLabel::sizeHint());
To copy to clipboard, switch view to plain text mode 

Apparently, HTML can do <font size=7>, but that's not really big enough - I'd like the thing to be visible from across the room!

I know nothing about HTML
thanks
K