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