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