#include #include #include int main(int argc, char *argv[]) { QApplication app(argc, argv); QTextBrowser browser; QString html( "" "Genesis 1" "" "

Genesis

" "

Chapter 1

" "

In the beginning God created the heaven and the earth.

" ""); browser.setHtml(html); browser.show(); return app.exec(); }