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