Difference between revisions of "Fonts"
From Indie IT Wiki
imported>Plittlefield |
Plittlefield (talk | contribs) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | == Installation == | ||
+ | |||
+ | sudo -i | ||
+ | mkdir /usr/share/fonts/googlefonts && cd /usr/share/fonts/googlefonts | ||
+ | unzip -d . /home/plittlefield/Downloads/Poppins.zip | ||
+ | fc-cache -fv | ||
+ | fc-match Poppins | ||
+ | cd /usr/share/fonts/googlefonts/ | ||
+ | unzip -d . /home/plittlefield/Downloads/Lato.zip | ||
+ | fc-cache -fv | ||
+ | fc-match Lato | ||
+ | |||
+ | == Nice Examples == | ||
+ | |||
+ | [https://www.carscoops.com/2022/05/polestar-confirms-that-the-new-3-suv-will-debut-in-october/ CarScoop] | ||
+ | |||
+ | font-family: Roboto, sans-serif; | ||
+ | font-size: 19px; | ||
+ | font-weight: 300; | ||
+ | letter-spacing: 0.008em; | ||
+ | line-height: 31px; | ||
+ | |||
+ | ... | ||
+ | |||
== Google Fonts == | == Google Fonts == | ||
Latest revision as of 12:16, 7 January 2025
Installation
sudo -i mkdir /usr/share/fonts/googlefonts && cd /usr/share/fonts/googlefonts unzip -d . /home/plittlefield/Downloads/Poppins.zip fc-cache -fv fc-match Poppins cd /usr/share/fonts/googlefonts/ unzip -d . /home/plittlefield/Downloads/Lato.zip fc-cache -fv fc-match Lato
Nice Examples
font-family: Roboto, sans-serif; font-size: 19px; font-weight: 300; letter-spacing: 0.008em; line-height: 31px;
...