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