> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Respond HTML

> Return an HTML document from a URL or form workflow.

**Respond HTML** returns a string with the `text/html` content type. It is
available with the **URL** and **Form Submission** triggers.

## Inputs

| Input      | Type   | Required | Description                                                 |
| ---------- | ------ | -------- | ----------------------------------------------------------- |
| **Body**   | String | Yes      | The HTML document or fragment to return.                    |
| **Status** | Number | No       | An HTTP status code from `100` to `599`. Defaults to `200`. |

```html theme={null}
<!doctype html>
<html>
  <body>
    <h1>Thanks — your submission was received.</h1>
  </body>
</html>
```

<Warning>
  The HTML is sent as provided. Only include markup and scripts you trust.
</Warning>
