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