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