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