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