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