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