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