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