# EmbedHTML Snippets

Here are a few handy EmbedHTML snippets that you can use in your projects. Enter these snippets here:

<figure><img src="https://2186043722-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Mgll1jjQMRTVj7p6n7g%2Fuploads%2Flj3ri0q15mhRd1lIMJWr%2Fimage.png?alt=media&#x26;token=561f7226-d35a-4ded-8de5-ffd1f125d3d2" alt=""><figcaption><p>EmbedHTML Snippets</p></figcaption></figure>

### Embedding any web page

```markup
<iframe src="{your_page_link_here}" width="100%" height="100%" />
```

### Embedding a PDF

```markup
<html>
<body>
    <object data="{your_pdf_link_here}" type="application/pdf" width="100%" height="100%">
        <embed src="{your_pdf_link_here}" type="application/pdf"  width="100%" height="100%"/>
    </object>
</body>
</html>
```

### Embed a 3D Model

{% code title="Code Snippet" overflow="wrap" %}

```markup
<iframe 
  src="https://gltf-viewer.in.gmetri.com#model=yourModelURL&kiosk=true" 
  style="width: 100%; height: 100%;" frameBorder="0" />
```

{% endcode %}

{% code title="Example" overflow="wrap" %}

```markup
<iframe 
  src="https://gltf-viewer.in.gmetri.com#model=https%3A%2F%2Fu.vrgmetri.com%2Fgb-sms-prod-1%2Fmedia%2F2021-1%2Fgmetri%2F08d1bf34-4618-4b81-809a-d20aef9ec106%2Fo%2Fvivreau09.glb&kiosk=true" 
  style="width: 100%; height: 100%;" frameBorder="0" />
```

{% endcode %}

{% embed url="<https://gmetri_demo.gmetri.com/embedhtml_demo>" %}
EmbedHTML 3D Model Demo
{% endembed %}

### Embed a Zoomable Image

{% code title="Code Snippet" overflow="wrap" %}

```markup
<iframe 
  src="https://csb-hiozp.vercel.app/?img_url=yourImageURL" 
  width="100%" height="100%" />
```

{% endcode %}

{% code title="Example" overflow="wrap" %}

```markup
<iframe 
  src="https://csb-hiozp.vercel.app/?img_url=https://u.vrgmetri.com/gb-sms-prod-1/media/2022-1/ouqorj/a6f70407-3041-45e2-b4a4-2495fc517468/o/houseRules.png" 
  width="100%" height="100%" />
```

{% endcode %}
