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