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