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