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