Explains the embed of Archisketch product contents.

Overview

On this page, you can know how to embed project content on another website and usage the parameters of each content.


Contents

Archisketch Dashboard provides 3 types of project embedding content.
If you wonder about embedding methods and embedding properties by content, please refer to the content below.


How to create project contents?

First, create project content in Archisketch dashboard.

800

And then, click the Copy Link button after checking the contents of Floor Plan, Rendering Image, 720ยฐ & Panorama on the created project detail page.

800


How to embed project contents?

If you copy the content link after checking the content on the dashboard, you can insert them into other websites as shown below.

(If you are now using website service(Wix, Shopify, Squarespace ...etc) and your website service provides the embed function, please follow their embed guide.)

How to insert by using [HTML > embed tag]

<!DOCTYPE html>
<html>
<body>

<h1>You can insert project contents by using [HTML > Embed Tag].</h1>

<embed
 type="text/html"
 src="Please enter content URL on src field."
 width="Please enter content width."
 height="Please enter content height."
 >
    
</body>
</html>


How to insert by using [HTML > iframe tag]

<!DOCTYPE html>
<html>
<body>
 
 <iframe
   title="You can put an Iframe in this way."
   src="Please enter content URL on src field."
	 width="Please enter content width."
	 height="Please enter content height."
 >
 </iframe>
     
</body>
</html>