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