> For the complete documentation index, see [llms.txt](https://guides.orderla.my/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guides.orderla.my/orderla-plus/embed-orderla-page.md).

# Embed Orderla Page

To start enable your form to embed to another webpage you need to enable this feature to make sure the form work correctly.&#x20;

First go to your form editing page.

<figure><img src="/files/q9gBZpj3AKwdX1AWFyhX" alt=""><figcaption></figcaption></figure>

Scroll down to **Form Embedding** card.&#x20;

Check '**Embedded inside iframe'** on.

Then click '**Copy**' button on the right side to copy the all the code on the clipboard.

<figure><img src="/files/G24UaQgpFWg5uIcEROsp" alt=""><figcaption></figcaption></figure>

Paste the code into your HTML page.

The sample code is like below for reference:

```
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0001, user-scalable=no" >
  <meta http-equiv="X-UA-Compatible" content="ie=edge"> 
  <title>Order Form</title>
</head>
<body style="padding:0;margin:0;overflow:hidden;">

  <iframe 

    frameborder="0" style="overflow:hidden;overflow-x:hidden;overflow-y:hidden;height:100%;width:100%;position:absolute;top:0px;left:0px;right:0px;bottom:0px" height="100%" width="100%"
    src="<replace with orderla form url start with https://>"   
    
  >
  </iframe>
  
</body>
</html>
```
