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