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