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