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