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