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