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