Requirements for MetaServer

I have a simple MetaServer that I am working on…nothing complex, just hosts, ports and # players. I would like to incorporate this into the GUI, but have no idea where to start…It would be fairly simple to do in HTML. Can I do it in HTML and have it show up in PlayCanvas? Do I need to design a list or table model? Is there one? Looking now

I found it the easiest to do by having a GUI script and on initialize I just build the HTML myself.
You can go with simple:
element = document.createElement(‘div’);
document.body.appendChild(element);

and put there whatever you like.