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