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