Embed a Web Scene on your Website

When you publish your scene to the web, you receive a link to a full-page instance of the Web Player. You can share this link directly or embed your scene within a webpage using an <iframe> component.

Open me for an example of an embedded web scene

How to Embed Your Scene

To add your Mental Canvas scene to a webpage, insert the following <iframe> code into your site’s HTML. Replace YOUR_SCENE_URL with the characters at the end of the link you received when publishing your scene.

  <iframe 
    src="https://mentalcanvas.net/YOUR_SCENE_URL"
    title="My Mental Canvas Scene"
    width="100%"
    height="600"
    allowfullscreen>
  </iframe>