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