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