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