April 2018
Intermediate to advanced
404 pages
8h 27m
English
After that, add in the following code to the HTML file we just created:
<!DOCTYPE html><html>
<head>
<title>Page Title</title>
</head>
<body>
<p>Hello World!</p>
</body>
</html>
These are the basic HTML tags which show you nothing other than a line of words that says Hello World!. You can try and load it using your web browser:

After that, let's go back to our Qt project and go to File | New File or Project and create a Qt Resource File:

Then, open up the Qt resource file we just created and add in an ...