Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alifeee/font-talk

A talk about fonts, for Front-End Sheffield (FES) March 2024
https://github.com/alifeee/font-talk

fonts presentation revealjs talk

Last synced: 23 days ago
JSON representation

A talk about fonts, for Front-End Sheffield (FES) March 2024

Awesome Lists containing this project

README

        

# Font Talk

A talk about fonts, for Front-End Sheffield (FES) March 2024

Using [reveal.js](https://revealjs.com/).

## Convert `TTF` to `WOFF` font

```bash
sudo apt-get install woff-tools
sfnt2woff font.ttf
```

### In bulk

```bash
find . -name "*.ttf" -exec sfnt2woff {} \;
```

## Create `CSS` from `WOFF` files

```bash
find . -name "*.woff" -exec ./filename_to_css.sh {} \;
```

## Make presentation into a PDF

See

## Shortcuts

From

![Screenshot of list of keyboard shortcuts for RevealJS](images/revealjs_shortcuts.png)