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