Use on the webTotal Use [ 3168 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/23d099d3f51ff6375eee64d1403ce773?family=PoynterOSTextOne-Italic" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/23d099d3f51ff6375eee64d1403ce773?family=PoynterOSTextOne-Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "PoynterOSTextOne-Italic";
src: url("https://db.onlinewebfonts.com/t/23d099d3f51ff6375eee64d1403ce773.eot");
src: url("https://db.onlinewebfonts.com/t/23d099d3f51ff6375eee64d1403ce773.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/23d099d3f51ff6375eee64d1403ce773.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/23d099d3f51ff6375eee64d1403ce773.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/23d099d3f51ff6375eee64d1403ce773.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/23d099d3f51ff6375eee64d1403ce773.svg#PoynterOSTextOne-Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "PoynterOSTextOne-Italic";