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