import QtQuick import QtQuick.Controls import QtWebEngine Window { width: Screen.width height: Screen.height - 150 WebEngineView { id: webEngineView anchors.fill: parent anchors.bottomMargin: 50 } Row { height: 50 anchors.bottom: parent.bottom Button { height: 50 text: "Example 1" onClicked: webEngineView.loadHtml("
") } Button { height: 50 text: "Example 2" onClicked: webEngineView.loadHtml("
Some Text
Background-Image by Nasa
") } } }