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