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