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