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