# Installation

> Load the circuly cart on your site from the CDN.

## CDN

Include the `<script>` tag on your webpage.

```html
<script type="module" src="https://cdn2.circuly.io/v1/1.10/cart.js"></script>
```

Add the `<div id="circuly-cart">` element.

```html
<div id="circuly-cart"></div>
```

The app instance will place itself onto the `circuly-cart` element.

```html{3,8}
<head>
    ...
  <script type="module" src="https://cdn2.circuly.io/v1/1.10/cart.js"></script>
</head>

<body>
    ...
  <div id="circuly-cart"></div>
</body>
```

## Optional

Loading the script with the `defer` attribute specifies that the script is executed after the page has finished parsing.

```html
<div id="circuly-cart"></div>
<script type="module" src="https://cdn2.circuly.io/v1/1.10/cart.js" defer></script>
```
