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