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