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