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