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