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