# (tel: …)

Embeds a linked telephone number

****

- Source: <https://github.com/getkirby/kirby/tree/5.5.3/config/tags.php#L257>

****

## Attributes

In addition to the main `tel` option, the tag supports the following attributes: `class`, `rel`, `text`, `title`

| Attribute | Description | Default |
|---- | ---- | ---- |
| class | The class which is added to link element | `null` |
| rel | The rel attribute that is added to link element | `null` |
| title | The title attribute that is added to link element | `null` |
| text | The text that is added to link element | `null` |

### Attribute defaults from config

You can customize the defaults of this tag's attributes via the <a href="https://getkirby.com/docs/reference/system/options/kirbytext#tel">`kirbytext.tel` config option</a>.

## Examples

### Telephone number without link text
```kirbytext
(tel: +49123456789)
```

### Telephone number with link text
```kirbytext
(tel: +49123456789 text: call us)
```

### Telephone number with a custom CSS class
```kirbytext
(tel: +49123456789 class: phone)
```

### Telephone number with a `title` attribute
```kirbytext
(tel: +49123456789 title: This is my phone number)
```

### Telephone number with a `rel` attribute
```kirbytext
(tel: +49123456789 rel: me)
```