Following is the example of QLabel that displays use of texts,images and hyperlinks.
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
def window():
   app = QApplication(sys.argv)
   win = QWidget() 
    
   l1 = QLabel()
   l2 = QLabel()
   l3 = QLabel()
   l4 = QLabel()...