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