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