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