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