This link uses a custom font called zee family. How do I save the rendered font from this website(zee family), any help would be appreciated.
This link uses a custom font called zee family. How do I save the rendered font from this website(zee family), any help would be appreciated.
2
Answers
After opening Developer Tools F12, find the Inspector tab. Click on any page element that used the font in question, like
<body>
This will display a list of styles in the middle pane, and the very first one probably says
post-6.css
or some CSS file. Click on this file name, and this will show the contents of the CSS — in this case, there will be a list of URLs where you can download the WOFF and TTF files.https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face
If you wish to enumerate all the available
@font-face
definitions loaded by any current page, just run the following snippet in the js console:It will echo every single font-face definition where each one has a
font-family
key and a list of urls with the corresponding font files.Consider that the
src
property allows multiple sources that will be evaluated in the order found and the first one being available and supported will be used by the browser.https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src
Easier approach…
In case you are more comfortable using a solution more straight to the point (but showing less details), the Firefox browser has a feature showing all the font files used by the page inside the Developer Tools.
I show here the way to access to that panel (I use the italian language but it’s easy to find out):