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