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