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