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