# Installation

## Step 1: Get Access Key

The first step is to receive your access key from [MakeTheForm](https://maketheform.com/#start).

Once you submit the form, you will receive an access key to your email.

## Step 2: Create HTML form

Create a form in your website with our form endpoint as the action attribute.

```html
<!-- Plain HTML Example -->
<form action="https://maketheform.com/api/submit" method="POST">

    <!-- Replace with your Access Key here -->
    <input type="hidden" name="apiKey" value="YOUR_API_KEY_HERE">

    <!-- Each input must have "name" attribute -->
    <input type="text" name="name">
    <input type="email" name="email">
    <textarea name="message"></textarea>

    <button type="submit">Send</button>
</form>
```

{% hint style="info" %}
Make sure you include "name" attributes and the "apiKey" value
{% endhint %}

## Step 3: Add your access key

Add your api key to start receiving email submissions directly to your email.

```html
 <input type="hidden" name="apiKey" value="YOUR_API_KEY_HERE">
```


---

# 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://docs.maketheform.com/getting-started/installation.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.
