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