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