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