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