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