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