import QtQuick Window { width: 640 height: 480 visible: true title: qsTr("Hello World") Text { anchors.horizontalCenter: parent.horizontalCenter y: 100 font { family: "Caladea" italic: false pixelSize: 72 } text: "Caladea" } Text { anchors.horizontalCenter: parent.horizontalCenter y: 250 font { family: "Caladea" italic: false bold: true pixelSize: 72 } text: "Caladea Bold" } }