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