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