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