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