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