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