Use on the webTotal Use [ 4284 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/1afe391f5d8ceb86748dd13e4b646dea?family=LTUnivers+541+ExtdMediumIt" 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/1afe391f5d8ceb86748dd13e4b646dea?family=LTUnivers+541+ExtdMediumIt);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "LTUnivers 541 ExtdMediumIt";
src: url("https://db.onlinewebfonts.com/t/1afe391f5d8ceb86748dd13e4b646dea.eot");
src: url("https://db.onlinewebfonts.com/t/1afe391f5d8ceb86748dd13e4b646dea.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/1afe391f5d8ceb86748dd13e4b646dea.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/1afe391f5d8ceb86748dd13e4b646dea.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/1afe391f5d8ceb86748dd13e4b646dea.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/1afe391f5d8ceb86748dd13e4b646dea.svg#LTUnivers 541 ExtdMediumIt")format("svg");
}
2CSS rules to specify fonts
font-family: "LTUnivers 541 ExtdMediumIt";