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