What might a shell app HTML file look like?

A shell app HTML index.html file could look like this:

<html> <head> <script src="APPmyApp.js"></script> </head> <body> </body> </html>

i.e. almost nothing! Literally a shell of HTML and all the logic for the application is implemented within a single Javascript file.