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