# Create Customer Tag

You can tag your customers manually in the CrowdPower console, but if you would like to tag a customer automatically with the JavaScript Tag, you can do so using the following method. If no tag exists in your project, it will create a new one for you, and then apply it to the customer.

```javascript
<script>
  window.cp('tag', {
    name: '<tag_name>', // The name of the tag
  });
</script>
```
