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