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