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