> For the complete documentation index, see [llms.txt](https://kykurniawan.gitbook.io/tagly/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kykurniawan.gitbook.io/tagly/introduction.md).

# Introduction

Welcome to Tagly Documentation. Tagly is just a simple HTML input tag built on the power of Javascript. I don't have a long description of this library, so get straight to the point.

## Simple Usage

To use this library, you can directly download this repository and embed minified javascript file from dist folder to your page. Please see example bellow:

```html
<!DOCTYPE html>
<html lang="en">
    <body>
        <form>
            <div id="tagly"></div>
            <button type="submit">Submit</button>
        </form>

        <script src="path/to/tagly.min.js"></script>
        <script>
            new Tagly(document.querySelector('div#tagly'))
        </script>
    </body>
</html>
```
