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