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: 3 months ago
JSON representation
Presentation for a font-making workshop using https://revealjs.com/.
- Host: GitHub
- URL: https://github.com/alifeee/font-workshop
- Owner: alifeee
- Created: 2024-02-25T17:44:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-29T15:54:56.000Z (about 1 year ago)
- Last Synced: 2025-03-28T16:49:56.195Z (4 months ago)
- Topics: fonts, presentation, reveal-js
- Language: HTML
- Homepage: https://alifeee.co.uk/font-workshop/
- Size: 21.1 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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