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