what is the meaning of CDN – in font referencing
see:
[https://kinsta.com/blog/local-fonts/])>We take the font files and upload them via FTP our WordPress site to a folder we created called “fonts.” In this example, we are using a CDN for all of our assets, along with the free CDN Enabler plugin from the team over at KeyCDN. This plugin automatically copies the fonts we just uploaded to our CDN. Even though we say host them locally, a CDN is still referencing your local assets.
and
​
u/font-face {
font-family: ‘proxima_softregular’;
src: url(‘https://cdn.wpdev.ink/fonts/proximasoft-regular-webfont.woff2’) format(‘woff2’),
url(‘https://cdn.wpdev.ink/fonts/proximasoft-regular-webfont.woff’) format(‘woff’);
font-weight: normal;
font-style: normal;
}
u/font-face {
font-family: ‘proxima_softbold’;
src: url(‘https://cdn.wpdev.ink/fonts/proximasoft-bold-webfont.woff2’) format(‘woff2’),
url(‘https://cdn.wpdev.ink/fonts/proximasoft-bold-webfont.woff’) format(‘woff’);
font-weight: normal;
font-style: normal;
}
well that said – we have – besides the cdn we have other ways…
see this
[ad_2]