The example shows three labels having text in three different fonts. myfont = Font(family="Ubuntu Mono", size=16) label1 = Label(self, text=txt, font=myfont) A specific font is created with the Font class. If the font is not available on the platform, Tkinter reverts to some ...