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