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