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