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