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