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