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