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