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