> ## Documentation Index
> Fetch the complete documentation index at: https://docs.oppla.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Getting Started with Oppla

> Learn how to get started with Oppla's analytics and journey features

# Getting Started with Oppla

Welcome to Oppla! This guide will help you get started with our platform's core features.

## Installation

To begin using Oppla, you'll need to:

1. Create an Oppla account
2. Add Oppla to your website
3. Set up user identification
4. Start tracking events

### Adding Oppla to Your Website

Add the following script to your website's `<head>` section:

```html theme={null}
<script>
  (function(p,r,o,d,i,o){p[i]=p[i]||function(){(p[i].q=p[i].q||[]).push(arguments)};
  o=r.createElement('script');o.async=1;o.src=d;r.head.appendChild(o);
  })(window,document,'script','https://cdn.oppla.ai/tracker.js','oppla');
</script>
```

### Identifying Users

To track user behavior effectively, identify your users:

```javascript theme={null}
oppla('identify', {
  userId: 'user_123',
  traits: {
    name: 'John Doe',
    email: 'john@example.com',
    plan: 'premium'
  }
});
```

## Key Features

### Analytics

Oppla's analytics features help you understand user behavior:

* Track page views and events
* Analyze user sessions
* Compare metrics over time
* Set up custom data tags

### Journey

Create guided user experiences:

* Design onboarding flows
* Create product tours
* Set up multi-step user journeys
* Customize step types (tooltips, modals, banners)

## Next Steps

1. [Add your website](/analytics/add-website)
2. [Track your first event](/analytics/track-events)
3. [Create a tour](/tours/overview)

<CardGroup cols={2}>
  <Card title="Analytics Guide" icon="chart-line" href="/analytics/overview">
    Learn how to track and analyze user behavior
  </Card>

  <Card title="Tours" icon="map" href="/tours/overview">
    Create interactive user guides and onboarding experiences
  </Card>
</CardGroup>
