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