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