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