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