Fachschaft Computerlinguistik CDN

The distributed resources are grouped by type. A lib/ infix indicates that the resource was not developed by the Fachschaft Computerlinguistik, i.e., is a 3rd-party library. This is true for most content distributed here.

Fonts

Nunito

@import url("https://cdn.fachschaft.cl.uni-heidelberg.de/fonts/lib/Nunito/nunito.css");

You can then use the Nunito font:

body {
    font-family: Nunito, sans-serif;
}

Fira Code

@import url("https://cdn.fachschaft.cl.uni-heidelberg.de/fonts/lib/Fira_Code/fira_code.css");

You can then use the Fira Code font:

body {
    font-family: "Fira Code", monospace;
}

Font Awesome 7 (Free)

@import url("https://cdn.fachschaft.cl.uni-heidelberg.de/fonts/lib/Font_Awesome_7/css/all.min.css");

You can then use a Font Awesome icon in your HTML like this:

<i class="fa-solid fa-file-lines"></i>

The official documentation does not recommend all.min.css anymore since version 7, we suppose the preferred alternative would now be:

@import url("https://cdn.fachschaft.cl.uni-heidelberg.de/fonts/lib/Font_Awesome_7/css/fontawesome.min.css");
@import url("https://cdn.fachschaft.cl.uni-heidelberg.de/fonts/lib/Font_Awesome_7/css/regular.min.css");
@import url("https://cdn.fachschaft.cl.uni-heidelberg.de/fonts/lib/Font_Awesome_7/css/solid.min.css");
@import url("https://cdn.fachschaft.cl.uni-heidelberg.de/fonts/lib/Font_Awesome_7/css/brands.min.css");

JavaScript

Mithril.js

import "https://cdn.fachschaft.cl.uni-heidelberg.de/js/lib/mithril/mithril.min.js"

Tom Select

CSS:

@import url("https://cdn.fachschaft.cl.uni-heidelberg.de/js/lib/tom-select/tom-select.css");

JavaScript:

import "https://cdn.fachschaft.cl.uni-heidelberg.de/js/lib/tom-select/tom-select.complete.min.js"