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