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