diff --git a/README.md b/README.md
index 3e5e6ad..a3d7130 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ A dependency free utility for cropping images based on a focus point ~2.13kB gzi
There are two ways to supply the coordinates when initializing the `FocusedImage` class
-#### Data Tags
+#### Using data tags
```html
@@ -38,7 +38,7 @@ const img = document.querySelector('.focused-image') as HTMLImageElement
const focusedImage = new FocusedImage(img)
```
-#### Using `focus` Option
+#### Using `focus` option
```html
@@ -60,6 +60,18 @@ const focusedImage = new FocusedImage(img, {
### FocusPicker
+```html
+
+

+
+```
+
Provide an `onChange` callback that will receive a `Focus` object that has `x` and `y` properties for the newly selected coordinates. Optionally supply a `focus` to initialize with, or a `retina` src to use instead of the default white ring SVG.
```ts