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