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