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