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