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