The font for some reason does not work in the fields (chrome) on the poppy
Who has come across this? How to fix?
For each browser it is better to use its own font format:
@font-face { font-family: 'MyWebFont'; src: url('webfont.eot'); /* IE9 Compat Modes */ src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('webfont.woff2') format('woff2'), /* Super Modern Browsers */ url('webfont.woff') format('woff'), /* Pretty Modern Browsers */ url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */ url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */ }
If you have a source font in otf
or eot
, use a converter. I recommend: https://everythingfonts.com
Source: https://ru.stackoverflow.com/questions/549570/
All Articles