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