Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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/.
- Host: GitHub
- URL: https://github.com/alifeee/font-workshop
- Owner: alifeee
- Created: 2024-02-25T17:44:23.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-29T15:54:56.000Z (6 months ago)
- Last Synced: 2024-05-30T05:52:13.925Z (6 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