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