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