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