Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Presentation for a font-making workshop using https://revealjs.com/.
https://github.com/alifeee/font-workshop

fonts presentation reveal-js

Last synced: 23 days ago
JSON representation

Presentation for a font-making workshop using https://revealjs.com/.

Awesome Lists containing this project

README

        

# Font Workshop

Presentation for a font-making workshop 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