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