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