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