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