Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/alifeee/font-talk
- Owner: alifeee
- Created: 2024-03-23T01:57:35.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-27T01:01:11.000Z (8 months ago)
- Last Synced: 2024-03-27T16:59:18.613Z (8 months ago)
- Topics: fonts, presentation, revealjs, talk
- Language: HTML
- Homepage: https://alifeee.co.uk/font-talk/
- Size: 22.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)