# pollen

## Using Pollen in the browser directly

1. Add the script to your page head:

```
<script async src="https://unpkg.com/@pollenapp/pollen@1/umd/recommendations.js"></script>
```

2. Add the `pollen-recommendations` element to your HTML:

```
    <pollen-recommendations
      title="Other apps we think you'll like"
      publishable-key="pk_NVQImF9vxxwrPVGSpDLqw9Ep"
    />
```

## Using Pollen as a module

```js
import { loadRecommendations } from '@getpollen/pollen'
loadRecommendations() // this defines the custom elements in the registry
```

or

```js
import { Recommendations } from '@getpollen/pollen'
customElements.define('pollen-recommendations', Recommendations)
```

You should then add the `pollen-recommendations` element to the DOM as above.
