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