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