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