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