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