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