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