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