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