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