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