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