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