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