How many did you find?
Is it more than you expect?
How different are they?
How many do you think you see in a day?
Personal fonts have a great home on personal websites or anywhere you can put CSS!
@font-face {
font-family: "BogFace";
src: url("./bogface/BogFace.woff") format("woff");
}
.font--bogface {
font-family: "BogFace", sans-serif;
}
<span class="font--bogface">simple BogFace!</span>
See Zach Leatherman's Comprehensive Webfonts & Font Checklist for more.
#!/bin/bash
# has_google_fonts.sh
if grep -q "fonts.googleapis.com" $1; then
echo 1;
else
echo 0;
fi
find ./sites/ -exec ./has_google_fonts.sh {} \;
| awk '{sum += $0; tot += 1} END {print sum "/" tot}'
Site | Fraction | |
---|---|---|
Personal | 20/101 | ██░░░░░░░░░░ |
Top 50 | 5/41 | █░░░░░░░░░░░ |
Caveat: does not show self-hosted fonts
page load speed, permacomputing & carbon footprint
Stop Using Custom Web Fonts , Bradley Taunt
System Fonts Look Good "Think of the Consistency!" Loss of Personality Hurting Performance & Wasting Resources
In defense of user-defined web fonts , Theodore Keloglou
it makes me happy that (i) my blog platform is insanely fast and (ii) I let my users choose their own fonts.
Only 4 of 105 sites mentioned making fonts
Bonus mention: https://blinry.org/anki-fonts/
Font design can be a Trap, but I find it a rather pleasant one.
https://fontforge.org/docs/tutorial.html