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