How to embed html page on WEBGL project? Everything I see fits only to mobile
There is no Unity engine way to embed a web pages inside a Unity WebGL Canvas running on a web page. That would be inefficient since the Unity app would be running in a web browser, but should also embed a web browser in it.
To avoid a web browser needing to embed a web browser, one can sidestep the problem and create and overlay HTML elements directly on top of the canvas. See something like html - How to overlay a div over a canvas CSS - Stack Overflow or https://www.informit.com/articles/article.aspx?p=1903884&seqNum=8 .
@jukka_j @MaorDany : Check out the Vuplex plugin, it isn’t yet WebGL compatible, but the developer Nate has been working on it. If you need a web browser on a texture, this is the best you’re going to get. We use it for youtube playback in our mobile apps in 3D unity space and will use it for youtube playback in 3D & AR via Unity WebGL once we can.