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