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