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