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