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