First of all, you need to download the framework. If you are planning to use FasterJS as is (you don't care about its codes under the hood), then I suggest to use the minified version faster.min.js then include it before closing the body tag.
Then, you need to set <base /> tag in <head>. This is important for website routeing system stability.
I suggest to create a separate js file to setup FasterJS rather than coding it in <script> tag below the script file.:
Basically, FasterJS works with a one-only whole root container element having this attribute [data-faster-app]. It's a very good idea to use the HTML5 semantic element <main> as a direct child of <body>, but using <div> still a good choice anyway.
It'll be like this way: