# 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>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://guides.orderla.my/orderla-plus/embed-orderla-page.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
