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