# Source Code Pro

## Installing

{% tabs %}
{% tab title="@import" %}
At the top of your primary CSS file, insert:

```css
@import url("https://cdn.jsdelivr.net/npm/@xz/fonts@1/serve/source-code-pro.min.css");
```

{% endtab %}

{% tab title="<link>" %}
At the bottom of your `<head>` tag, insert:

```markup
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@xz/fonts@1/serve/source-code-pro.min.css"> 
```

This tag needs to be inserted in all HTML documents in which you'd like to use the font.
{% endtab %}
{% endtabs %}

## Usage

To use this font in your CSS:

```css
font-family: 'Source Code Pro', sans-serif;
```

## Styles

This font supports the following weights and styles:

* Extra Light (200)
* *Extra Light Italic (200)*
* Light (300)
* *Light Italic (300)*
* Normal (400)
* *Normal Italic (400)*
* Medium (500)
* *Medium Italic (500)*
* Semibold (600)
* *Semibold Italic (600)*
* **Bold (700)**
* ***Bold Italic (700)***
* **Black (900)**
* ***Black Italic (900)***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.xz.style/fonts/source-code-pro.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
