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