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