# fly-the-w

Web component that flies the W across the screen (`<fly-the-w>`).

## CDN (jsDelivr)

Load the module from [jsDelivr](https://www.jsdelivr.com/package/npm/fly-the-w) so the custom element is registered, then use the tag in your HTML.

**Pin a version** (recommended for production; match the version you depend on):

```html
<script type="module">
  import "https://cdn.jsdelivr.net/npm/fly-the-w@1.2.0/fly-the-w.js";
</script>

<fly-the-w></fly-the-w>
```

**Latest published** (convenient for demos; can change when new versions ship):

```html
<script type="module">
  import "https://cdn.jsdelivr.net/npm/fly-the-w/fly-the-w.js";
</script>
```

The [`+esm` bundle option](https://www.jsdelivr.com/esm) is not required here; the package ships as native ESM (`type: "module"`).
