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